
	
	$(document).ready(function() {
	
	
		
		// TOUT EFFECTS
		$("ul#touts.small li").hover(function() {
			$(this).find("div").stop();
			$(this).find("div").animate({ height: "126px", marginTop: "-50px"}, 300, "easeInBack");												   
		},function() {
			$(this).find("div").stop();
			$(this).find("div").animate({ height: "61px", marginTop: "15px"}, 150);	
		});
		
	});