$(document).ready(function(){
	
	//Fix Errors - http://www.learningjquery.com/2009/01/quick-tip-prevent-animation-queue-buildup/
	
	//Remove outline from links
	$("a").click(function(){
		$(this).blur();
	});
	
	//When mouse rolls over
	$("#li_actualite").mouseover(function(){
		$(this).stop().animate({height:'135px'},{queue:false, duration:600, easing: 'easeOutBounce'})
	});
	
	//When mouse is removed
	$("#li_actualite").mouseout(function(){
		$(this).stop().animate({height:'20px'},{queue:false, duration:600, easing: 'easeOutBounce'})
	});
	
	//When mouse rolls over
	$("#li_formation").mouseover(function(){
		$(this).stop().animate({height:'114px'},{queue:false, duration:600, easing: 'easeOutBounce'})
	});
	
	//When mouse is removed
	$("#li_formation").mouseout(function(){
		$(this).stop().animate({height:'20px'},{queue:false, duration:600, easing: 'easeOutBounce'})
	});
	
	//When mouse rolls over
	$("#li_candidat").mouseover(function(){
		$(this).stop().animate({height:'115px'},{queue:false, duration:600, easing: 'easeOutBounce'})
	});
	
	//When mouse is removed
	$("#li_candidat").mouseout(function(){
		$(this).stop().animate({height:'20px'},{queue:false, duration:600, easing: 'easeOutBounce'})
	});
	
	//When mouse rolls over
	$("#li_recruteur").mouseover(function(){
		$(this).stop().animate({height:'105px'},{queue:false, duration:600, easing: 'easeOutBounce'})
	});
	
	//When mouse is removed
	$("#li_recruteur").mouseout(function(){
		$(this).stop().animate({height:'20px'},{queue:false, duration:600, easing: 'easeOutBounce'})
	});
	
	
});