$(function(){
	
	// slide-down images on homepage
	$('#body_work .our_work li').hover(function(){
		$(this).find('img').animate({top:'155px'},{queue:false,duration:500});
	}, function(){
		$(this).find('img').animate({top:'0px'},{queue:false,duration:500});
	});

		
});


