// JavaScript Document

var puntini_azzurrini=new Image();
puntini_azzurrini.src="/images/puntini_azzurrini.gif";

var codice_temp;

function casella_dinamica_mouse_over(div,bullet,puntini){
 	div.style.background='#CCFFFF';
	bullet.src='/images/bullet_green.gif';
	puntini.src=puntini_azzurrini.src;
	}
	
	
function casella_dinamica_mouse_out(div,bullet,puntini){
 	div.style.background='#CCCCCC';
	bullet.src='/images/bullet_red.gif';
	puntini.src='/images/puntini_grigi.gif';	
	}		

function cambia_colore_div(){ 	
	
	clearTimeout(codice_temp);	

	var titolo=document.getElementById("iscrizioni");
	
	if(titolo.style.backgroundColor=="#ff0000" | titolo.style.backgroundColor=="red" )
	titolo.style.backgroundColor='#FF9900';
	else titolo.style.backgroundColor="red";
	    
	codice_temp=setTimeout("cambia_colore_div()",275)

	}
