// JavaScript Document





$(function(){
	    $('.wraps').hover(function(){
			
			
			
			$(this).children('.front').stop().animate({"top" :'143'} , "normal");	

			
								  
			}, function(){
			$(this).children('.front').stop().animate({"top" :'0'} , "normal");	
				
				
			});
	
	
	
});





