function hideAll()
{
	$("#mnuazienda").hide();
	$("#mnucatalogo").hide();
	$("#mnunews").hide();
}
var big = false;
function descriptionfooter(obj)
{
	if(!big)
	{
		$("#footer").animate({"height": "+=132px"}, "slow");
		$("#interfooter").animate({"height": "+=142px"}, "slow");
		big = true;
	}
	description(obj)
}
function closedescriptionfooter(obj)
{
	if(big)
	{
		//
		$("#footer").animate({"height": "-=132px"}, "slow");
		$("#interfooter").animate({"height": "-=142px"}, "slow");
		$("#coldesc").text("");
		big = false;
	}
}
function description(obj)
{
	$("#coldesc").text($(obj).attr('desc'));
}
$(document).ready(
	function ()
	{
		hideAll()
		//$("#footer").animate({"height": "+=400px"}, "slow");
		//$("#interfooter").animate({"height": "+=400px"}, "slow");
		
		$("#azienda").click(
			function ()
			{
				hideAll()
				$("#mnuazienda").fadeIn();
			}
		)
		$("#catalogo").click(
			function ()
			{
				hideAll()
				$("#mnucatalogo").fadeIn();
			}
		)
		$("#news").click(
			function ()
			{
				hideAll()
				$("#mnunews").fadeIn();
			}
		)
	}
	
)
