/* edbellessere by WebLogiX */
var tempo = 800;

jQuery(document).ready(function(){
	$('#menu').slideDown(tempo, mettiSfondo);
	
	$('#manopola1').hover(function() {$(this).children('img').animate({rotate: '+=360deg'}, tempo);}, function() {});
	$('#manopola2').hover(function() {$(this).children('img').animate({rotate: '+=360deg'}, tempo);}, function() {});
	$('#manopola3').hover(function() {$(this).children('img').animate({rotate: '+=360deg'}, tempo);}, function() {});	
});

function mettiSfondo()
{
	$('#sub-content').animate({opacity:0}, tempo);
}

