var labelle={	
	bindAnimations:function(){	
		$('div#r_area a').bind('mouseover',function(){
			$('#button_r').animate({
				'left':0				
			},{duration:300,queue:false});
		}).bind('mouseout',function(){
			$('#button_r').animate({
				'left':-58				
			},{duration:300,queue:false});
		}		
		).bind('click',
			function(e){
				window.location=e.target.href+'#1';
				return false;
			}
		
		);
		
		$('div#l_area a').bind('mouseover',function(){
			$('#button_l').animate({
				'left':0				
			},{duration:300,queue:false});
		}).bind('mouseout',function(){
			$('#button_l').animate({
				'left':58				
			},{duration:300,queue:false});
		}		
		).bind('click',
			function(e){
				window.location=e.target.href+'#0';
				return false;
			}
		
		);
		
		$('#l_area a,#r_area a').attr('alt','').attr('title','');
		h=window.location.hash;
		if(h=='#1'){
			$('div#r_area a').trigger('mouseover');
		}
		if(h=='#0'){
			$('div#l_area a').trigger('mouseover');
		}
	},
	init:function(){
		labelle.bindAnimations();
		
	}
}
labelle.init();
// $('body').bind('load',labelle.init);
