//******************************************************************************************
// funzione utilizzata in tutte le pagine del sito
// prelevato su http://www.web-link.it
//******************************************************************************************

function homepage() 
{ 
	if(document.all)
	document.body.style.behavior='url(#default#homepage)';
	document.body.setHomePage('http://www.salesiani-oulx.it');
}
 
//******************************************************************************************
// funzione utilizzata nella pagine delle immagini
//******************************************************************************************
function vaiAllaPaginaImmagini()
{
    window.location.replace(immaginiDaCaricare.options[immaginiDaCaricare.selectedIndex].value);
    	
} // end_vaiAllaPaginaImmagini


//******************************************************************************************
// funzioni utilizzate in tutto il sito per applicare l'effetto arcobaleno alle scritte
//******************************************************************************************
/*
Prelevato su http://www.web-link.it

RAINBOW TEXT Script by Matt Hedgecoe (c) 2002
Featured on JavaScript Kit
For this script, visit http://www.javascriptkit.com
*/

// ********** MAKE YOUR CHANGES HERE

// inizio parte comune a tutte le funzioni
var text; // YOUR TEXT
var speed=80; // SPEED OF FADE
var hex=new Array("00","14","28","3C","50","64","78","8C","A0","B4","C8","DC","F0");  // array combinazione colori
var r=1;
var g=1;
var b=1;
var seq=1;
var storetext;
// fine parte comune a tutte le funzioni

function writeText(inputText)
{
   text= inputText; // YOUR TEXT
   
   if (document.all||document.getElementById)
   {
	  document.write('<span id="highlight">' + text + '</span>');
	  storetext=document.getElementById? document.getElementById("highlight") : document.all.highlight;
    }
    else
    {
	document.write(text);
    }

    starteffect(); 

} // end writeText

 
// ********** LEAVE THE NEXT BIT ALONE!


function changetext()
{
	rainbow="#"+hex[r]+hex[g]+hex[b];
	storetext.style.color=rainbow;
}

function change()
{
	if (seq==6)
	{
		b--;
		if (b==0)
			seq=1;
	}
	if (seq==5)
	{
		r++;
		if (r==12)
			seq=6;
	}
	if (seq==4)
	{
		g--;
		if (g==0)
			seq=5;
	}
	if (seq==3)
	{
		b++;
		if (b==12)
			seq=4;
	}
	if (seq==2)
	{
		r--;
		if (r==0)
			seq=3;
	}
	if (seq==1)
	{
		g++;
		if (g==12)
			seq=2;
	}

	changetext();

}// end_change

function starteffect()
{
   if (document.all||document.getElementById)
     flash=setInterval("change()",speed);
}
//******************************************************************************************
// fine funzioni utilizzate in tutto il sito per applicare l'effetto arcobaleno alle scritte
//******************************************************************************************


