$(document).ready(function(){
	$("a").click(function(){
		$(this).blur();
	});
	
	$("div#menu li.mn_serie").mouseover(function(){
		$(this).stop().animate({height:'130px'},{queue:false, duration:1000, easing: 'easeOutBounce'})
	});
	$("div#menu li.mn_serie").mouseout(function(){
		$(this).stop().animate({height:'35px'},{queue:false, duration:1000, easing: 'easeOutBounce'})
	});
	
	$("div#menu li.mn_jeux").mouseover(function(){
		$(this).stop().animate({height:'150px'},{queue:false, duration:1000, easing: 'easeOutBounce'})
	});
	$("div#menu li.mn_jeux").mouseout(function(){
		$(this).stop().animate({height:'35px'},{queue:false, duration:1000, easing: 'easeOutBounce'})
	});
  
  $("div#menu li.mn_goodies").mouseover(function(){
		$(this).stop().animate({height:'120px'},{queue:false, duration:1000, easing: 'easeOutBounce'})
	});
	$("div#menu li.mn_goodies").mouseout(function(){
		$(this).stop().animate({height:'35px'},{queue:false, duration:1000, easing: 'easeOutBounce'})
	});
});