// JavaScript Document

$(function() {
		 
		 $('.latestworkbox').hover(function() {
											
				$(this).children('.front').stop().animate( {
														  
									"top" : 250
									
			    }, 600);
			
		 } , function()  {
			 
				$(this).children('.front').stop().animate({ 
								
								"top" :  0
								
				 } , 400);
			 
		 });
		   
});




