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