// Animazione scritta da Stelitano Lorenzo - copyright 2010-2011

///ANIMAZIONE MENU	

function menu_over(titolo){

document.getElementById(titolo).style.backgroundColor="#FF6600";

if (titolo=="menu_1"){ document.getElementById("m_home").style.color="#333333"; 	 document.getElementById("m_home").style.fontWeight='bold'};
if (titolo=="menu_2"){ document.getElementById("m_profilo").style.color="#333333"; 	 document.getElementById("m_profilo").style.fontWeight='bold'};
if (titolo=="menu_3"){ document.getElementById("m_progetti").style.color="#333333"; 	 document.getElementById("m_progetti").style.fontWeight='bold'};
if (titolo=="menu_4"){ document.getElementById("m_esecutivi").style.color="#333333"; 	 document.getElementById("m_esecutivi").style.fontWeight='bold'};
if (titolo=="menu_5"){ document.getElementById("m_pubblicazioni").style.color="#333333"; document.getElementById("m_pubblicazioni").style.fontWeight='bold'};
if (titolo=="menu_6"){ document.getElementById("m_contatti").style.color="#333333"; 	 document.getElementById("m_contatti").style.fontWeight='bold'};
if (titolo=="menu_7"){ document.getElementById("m_links").style.color="#333333"; 	 document.getElementById("m_links").style.fontWeight='bold'};
if (titolo=="menu_8"){ document.getElementById("m_sitemap").style.color="#333333";  	 document.getElementById("m_sitemap").style.fontWeight='bold'};
}

function menu_out(titolo){

document.getElementById(titolo).style.backgroundColor="";

document.getElementById("m_home").style.color="";
document.getElementById("m_profilo").style.color="";
document.getElementById("m_progetti").style.color="";
document.getElementById("m_esecutivi").style.color="";
document.getElementById("m_pubblicazioni").style.color="";
document.getElementById("m_contatti").style.color="";
document.getElementById("m_links").style.color="";
document.getElementById("m_sitemap").style.color="";

document.getElementById("m_home").style.fontWeight='';
document.getElementById("m_profilo").style.fontWeight='';
document.getElementById("m_progetti").style.fontWeight='';
document.getElementById("m_esecutivi").style.fontWeight='';
document.getElementById("m_pubblicazioni").style.fontWeight='';
document.getElementById("m_contatti").style.fontWeight='';
document.getElementById("m_links").style.fontWeight='';
document.getElementById("m_sitemap").style.fontWeight='';
}

///TESTO SELEZIONATO

function testo_over(testo){

document.getElementById(testo).style.color="#FF6600";
}


function testo_out(testo){

document.getElementById(testo).style.color="";

}


///FUNZIONI CERCA	

function resetta(target){
document.getElementById(target).value="";
}

function rimando(){
a = document.getElementById("cerca").value;
location.href="LS_cerca.htm?" + a


}

function rimando_schede(){
a = document.getElementById("cerca").value;
location.href="../../LS_cerca.htm?" + a
}


function cerca_over(){
}

function cerca_out(){
}



