// JavaScript Document
function switchcont(content)
{
	var maincnt=document.getElementById("maincontent");
	var dovesiamocnt=document.getElementById("dovesiamo");
	var camerecnt=document.getElementById("camere");
	var servizicnt=document.getElementById("servizi");
	var galleriacnt=document.getElementById("galleria");
	//var dataplus=document.getElementById("dataplus");
	
	var maincell=document.getElementById("maincell");
	var dovecell=document.getElementById("dovecell");
	var camerecell=document.getElementById("camerecell");
	var galleriacell=document.getElementById("galleriacell");
	var servizicell=document.getElementById("servizicell");
	
	if(content=='dovesiamo')
	{
		maincnt.style.display='none';
		dovesiamocnt.style.display='block';		
		camerecnt.style.display='none';
		servizicnt.style.display='none';
		galleriacnt.style.display='none';
		//dataplus.style.display='block';
		resetcells();
		/*
		dovecell.style.backgroundColor="#FFFFFF";
		dovecell.style.borderBottomWidth="0px";
		dovecell.style.borderBottomColor="#FFFFFF";
		
		*/
		dovecell.style.fontWeight="bold";
		dovecell.style.backgroundImage="url(/images/roundcorner2.jpg)";
		load();
	}
	if(content=='maincontent')
	{
		maincnt.style.display='block';
		load();
		dovesiamocnt.style.display='none';
		camerecnt.style.display='none';
		servizicnt.style.display='none';
		galleriacnt.style.display='none';
		//dataplus.style.display='none';
		resetcells();
		/*
		maincell.style.backgroundColor="#FFFFFF";
		maincell.style.borderBottomWidth="0px";
		maincell.style.borderBottomColor="#FFFFFF";
		
		*/
		maincell.style.fontWeight="bold";
		maincell.style.backgroundImage="url(/images/roundcorner2.jpg)";
		
	}
	if(content=='camere')
	{
		maincnt.style.display='none';
		dovesiamocnt.style.display='none';
		camerecnt.style.display='block';
		servizicnt.style.display='none';
		galleriacnt.style.display='none';
		//dataplus.style.display='block';
		resetcells();
		/*
		camerecell.style.backgroundColor="#FFFFFF";
		camerecell.style.borderBottomWidth="0px";
		camerecell.style.borderBottomColor="#FFFFFF";
		
		*/
		camerecell.style.fontWeight="bold";
		camerecell.style.backgroundImage="url(/images/roundcorner2.jpg)";
	}
	if(content=='servizi')
	{
		maincnt.style.display='none';
		dovesiamocnt.style.display='none';
		camerecnt.style.display='none';
		servizicnt.style.display='block';
		galleriacnt.style.display='none';
		//dataplus.style.display='block';
		resetcells();
		/*
		servizicell.style.backgroundColor="#FFFFFF";
		servizicell.style.borderBottomWidth="0px";
		servizicell.style.borderBottomColor="#FFFFFF";
		
		*/
		servizicell.style.fontWeight="bold";
		servizicell.style.backgroundImage="url(/images/roundcorner2.jpg)";
	}
	if(content=='galleria')
	{
		maincnt.style.display='none';
		dovesiamocnt.style.display='none';
		camerecnt.style.display='none';
		servizicnt.style.display='none';
		galleriacnt.style.display='block';
		//dataplus.style.display='block';
		resetcells();
		/*
		galleriacell.style.backgroundColor="#FFFFFF";
		galleriacell.style.borderBottomWidth="0px";
		galleriacell.style.borderBottomColor="#FFFFFF";
		
		*/
		galleriacell.style.fontWeight="bold";
		galleriacell.style.backgroundImage="url(/images/roundcorner2.jpg)";
	}
}

function resetcells()
{
	    var maincell=document.getElementById("maincell");
		var dovecell=document.getElementById("dovecell");
		var camerecell=document.getElementById("camerecell");
		var galleriacell=document.getElementById("galleriacell");
		var servizicell=document.getElementById("servizicell");
		/*dovecell.style.backgroundColor="#cccccc";
		dovecell.style.borderBottomWidth="1px";
		dovecell.style.borderBottomColor="#000000";
		dovecell.style.fontWeight="normal";
		maincell.style.backgroundColor="#cccccc";
		maincell.style.borderBottomWidth="1px";
		maincell.style.borderBottomColor="#000000";
		maincell.style.fontWeight="normal";
		camerecell.style.backgroundColor="#cccccc";
		camerecell.style.borderBottomWidth="1px";
		camerecell.style.borderBottomColor="#000000";
		camerecell.style.fontWeight="normal";
		servizicell.style.backgroundColor="#cccccc";
		servizicell.style.borderBottomWidth="1px";
		servizicell.style.borderBottomColor="#000000";
		servizicell.style.fontWeight="normal";
		galleriacell.style.backgroundColor="#cccccc";
		galleriacell.style.borderBottomWidth="1px";
		galleriacell.style.borderBottomColor="#000000";
		galleriacell.style.fontWeight="normal";
		*/
		dovecell.style.backgroundImage="url(/images/roundcorner3.jpg)";
		dovecell.style.fontWeight="normal";
		maincell.style.backgroundImage="url(/images/roundcorner3.jpg)";
		maincell.style.fontWeight="normal";
		camerecell.style.backgroundImage="url(/images/roundcorner3.jpg)";
		camerecell.style.fontWeight="normal";
		servizicell.style.backgroundImage="url(/images/roundcorner3.jpg)";
		servizicell.style.fontWeight="normal";
		galleriacell.style.backgroundImage="url(/images/roundcorner3.jpg)";
		galleriacell.style.fontWeight="normal";
		
}