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


});
