// JavaScript Document
function cambia(chi) {
	if (document.getElementById(chi).style.visibility=="visible") {
		document.getElementById(chi).style.visibility="hidden";}
	else {
		document.getElementById(chi).style.visibility="visible";
	}
}	

function sopra(chi,immagine) {
	document.getElementById(chi).src="img/menu/"+immagine;
}

function carica (pagina) {
if (window.parent.frames[1]!=""){
	switch (pagina) {
		case "services" : window.parent.frames[1].location="services_media.html";
						  break;
		case "company" : window.parent.frames[1].location="company_media.html";
						  break;
		case "network" : window.parent.frames[1].location="network_media.html";
						  break;
		case "news" : window.parent.frames[1].location="news_media.html";
						  break;
		case "home" : window.parent.frames[1].location="home_media.html";
						  break;
		case "expo" : window.parent.frames[1].location="expo_media.html";
						  break;
		case "consulting" : window.parent.frames[1].location="consulting_media.html";
						  break;
		case "special" : window.parent.frames[1].location="special_project_media.html";
						  break;
		case "philosophy" : window.parent.frames[1].location="philosophy_media.html";
						  break;
		case "team" : window.parent.frames[1].location="team_media.html";
						  break;
		case "location" : window.parent.frames[1].location="location_media.html";
						  break;
		case "contacts" : window.parent.frames[1].location="contacts_media.html";
						  break;
	}
}
}
	
