function popVoice ( id )
{
	var tasca = document.getElementById ( 'tasca' );
	var spacer = document.getElementById ( 'no_voice' );
	
	if ( id == 'azienda' ) 
	{
		tasca.attributes.background.value = "menu/azienda_menu.png";
		var inner = "<a href='contatti.php'>CONTATTI</a> | <a href='dovesiamo.php'>DOVE SIAMO</a>";
		spacer.innerHTML = inner;
	}
	if ( id == 'service' ) 
	{
		tasca.attributes.background.value = "menu/service_menu.png";
		var inner = "<a href='noleggio.php'>NOLEGGIO</a> | <a href='esplora.php?cat=strutture&sez=service'>STRUTTURE</a> | <a href='esplora.php?cat=audio&sez=service'>AUDIO</a> | <a href='esplora.php?cat=video&sez=service'>VIDEO</a> | <a href='esplora.php?cat=luci&sez=service'>LUCI</a>";
		spacer.innerHTML = inner;
	}
	if ( id == 'entertainment' ) 
	{
		tasca.attributes.background.value = "menu/entertainment_menu.png";
		var inner = "<a href='esplora.php?cat=videoproduzione&sez=entertainment'>VIDEOPRODUZIONE</a> | <a href='esplora.php?cat=interactive&sez=entertainment'>INTERACTIVE MEDIA</a>";
		spacer.innerHTML = inner;
	}
		
	if ( id == 'gadget' ) 
	{
		tasca.attributes.background.value = "menu/gadget_menu.png";
		var inner = "&nbsp;"
		spacer.innerHTML = inner;
	}
	if ( id == 'accesso' ) 
	{
		tasca.attributes.background.value = "menu/accesso_menu.png";
		var inner = "&nbsp;"
		spacer.innerHTML = inner;
	}
}

function resetVoice ()
{
	var tasca = document.getElementById ( 'tasca' );
	tasca.attributes.background.value = "menu/tasca.png";
	var inner = "&nbsp;"
	var spacer = document.getElementById ( 'no_voice' );
	spacer.innerHTML = inner;
}

function goHome ()
{
	window.location = "index.php";
}
