

/*
 * Questa funzione nasconde tutti i tab della scheda di dettaglio del prodotto, tranne quello selezionato
 */
function changeToTab(numTab)
{
	// imposto come "non selezionati" tutti i tab visualizzati
	for(i=1; i<=6; i++)
	{
		if(document.getElementById('title'+i).className!='hidden') {
			document.getElementById('title'+i).className='footer-prod-item-unselected';
			document.getElementById('tab'+i).className='tab_unselected';
		}
	}
	// imposto come "selezionato" il tab cliccato
	document.getElementById('title'+numTab).className='footer-prod-item-selected';
	document.getElementById('tab'+numTab).className='tab_selected';
}

