$(document).ready(function() 
{
	$('#pulsante_prodotti').mouseover(function() 
	{
		apriMenuProdotti();
		menu_prod_open = true;
		over_prod_but = true;
	});
	$('#pulsante_prodotti').mouseleave(function() { over_prod_but = false; });
	$('a.mmbtn').mouseover(function() { chiudiMenuProdotti(); });
	$("body").mousemove(function(e) { if(e.pageY > 120 && !areXYInside($("sottoprodotti"), e)) { chiudiMenuProdotti(); } });
});

function apriMenuProdotti() 	{ $('#sottoprodotti').fadeIn("fast"); $('#sottoprodotti').css("z-index", 9999); $('#gus_overlay').css("z-index", 99999); }
function chiudiMenuProdotti() 	{ $('#sottoprodotti').fadeOut("fast"); }
function areXYInside(obj, e)
{  
	var w=$('#sottoprodotti').width();
	var h=$('#sottoprodotti').height();
	var x=$('#sottoprodotti').offset().left;
	var y=$('#sottoprodotti').offset().top;
	return !(e.pageX<x || e.pageX>x+w || e.pageY>y+h);
}

