$(document).ready(function() {		
	$('#language').hover(
	function () {
		//show the menu
		$('#language li').show();
		$(this).css('height', 137);
	}, 
	function () {
		//hide the menu
		$('#language li').hide();
		$(this).css('height', 29);
		}
	);
	$('#chi_siamo').hover(
		function () {
			//show the menu
			$('#chi_siamo div').show();
			$(this).css('height', 150);
		}, 
		function () {
			//hide the menu
			$('#chi_siamo div').hide();
			$(this).css('height', 30);
			}
	);
	$('#prodotti').hover(
		function () {
			//show the menu
			$('#prodotti div').show();
			$(this).css('height', 150);
		}, 
		function () {
			//hide the menu
			$('#prodotti div').hide();
			$(this).css('height', 30);
			}
	);
	$('#rivenditori').hover(
		function () {
			//show the menu
			$('#rivenditori div').show();
			$(this).css('height', 150);
		}, 
		function () {
			//hide the menu
			$('#rivenditori div').hide();
			$(this).css('height', 30);
			}
	);
	$('#comunicazione').hover(
		function () {
			//show the menu
			$('#comunicazione div').show();
			$(this).css('height', 150);
		}, 
		function () {
			//hide the menu
			$('#comunicazione div').hide();
			$(this).css('height', 30);
			}
	);
	$('#contatti').hover(
		function () {
			//show the menu
			$('#contatti div').show();
			$(this).css('height', 150);
		}, 
		function () {
			//hide the menu
			$('#contatti div').hide();
			$(this).css('height', 30);
			}
	);
	/*$('a').each(function(){ 
		if($(this).attr('href') == "#top") { 
			$(this).click(function(event) { 
				event.preventDefault();
				$('html, body').animate({scrollTop:  '0px'}, 800);	
			});
		}
	})*/
});
