$(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();
	});
	
	// pour le bouton ecole----------------------------------------------------------------------
	//quand la souris passe dessus
	$("li.ecole").mouseover(function(){
		$(this).stop().animate({height:'160px'},{queue:false, duration:600, easing: 'easeOutBounce'})
	});
	
	//quand la souris s'en va
	$("li.ecole").mouseout(function(){
		$(this).stop().animate({height:'94px'},{queue:false, duration:600, easing: 'easeOutBounce'})
	});
	
	// pour le bouton cours----------------------------------------------------------------------
	//quand la souris passe dessus
	$("li.cours").mouseover(function(){
		$(this).stop().animate({height:'160px'},{queue:false, duration:600, easing: 'easeOutBounce'})
	});
	
	//quand la souris s'en va
	$("li.cours").mouseout(function(){
		$(this).stop().animate({height:'94px'},{queue:false, duration:600, easing: 'easeOutBounce'})
	});
	
	
	
});
