function changeMultimediaTab(tab) {
	var id;			//variabile stringa che contiene l'ID di un elemento

	if (tab == 'Video') {
		//associa la classe tabHover al tab selezionato
		document.getElementById('TabAudio').className = 'tabNormal';
		document.getElementById('TabVideo').className = 'tabHover';
		//si rende visibile il div corrispondente al tab selezionato
		document.getElementById('Box_Multimedia_Audio').style.display='none';
		document.getElementById('Box_Multimedia_Video').style.display='block';
	}
	else {
		//associa la classe tabHover al tab selezionato
		
		var ob1 = document.getElementById('TabAudio');
		var ob2 = document.getElementById('TabVideo');
		
		document.getElementById('TabAudio').className = 'tabHover';
		document.getElementById('TabVideo').className = 'tabNormal';
		//si rende visibile il div corrispondente al tab selezionato
		document.getElementById('Box_Multimedia_Audio').style.display='block';
		document.getElementById('Box_Multimedia_Video').style.display='none';	
	}
}

function changePalinsestoTab(tab) {
	var id;			//variabile stringa che contiene l'ID di un elemento

	if (tab == 'Mattina') {
		//associa la classe tabHover al tab selezionato
		document.getElementById('TabMorni').className = 'tabHover';
		document.getElementById('TabAfter').className = 'tabNormal';
		document.getElementById('TabEveni').className = 'tabNormal';
		//si rende visibile il div corrispondente al tab selezionato
		document.getElementById('table_Mattina').style.display='block';
		document.getElementById('table_Pomeriggio').style.display='none';
		document.getElementById('table_Sera').style.display='none';	
	}
	else if (tab == 'Pomeriggio') {
		//associa la classe tabHover al tab selezionato
		document.getElementById('TabMorni').className = 'tabNormal';
		document.getElementById('TabAfter').className = 'tabHover';
		document.getElementById('TabEveni').className = 'tabNormal';
		//si rende visibile il div corrispondente al tab selezionato
		document.getElementById('table_Mattina').style.display='none';
		document.getElementById('table_Pomeriggio').style.display='block';
		document.getElementById('table_Sera').style.display='none';	
	}
	else{
		//associa la classe tabHover al tab selezionato
		document.getElementById('TabMorni').className = 'tabNormal';
		document.getElementById('TabAfter').className = 'tabNormal';
		document.getElementById('TabEveni').className = 'tabHover';
		//si rende visibile il div corrispondente al tab selezionato
		document.getElementById('table_Mattina').style.display='none';
		document.getElementById('table_Pomeriggio').style.display='none';
		document.getElementById('table_Sera').style.display='block';	
	}
}
