// JavaScript Document
var color;
var fntcolor;
var css;

function fclick(opcio){
	switch (opcio){
	case 0: //comptador
		clientSideInclude('comptador', 'scripts/comptador.php');
		laimatge();
	case 1: //inici
		clientSideInclude('submenu', 'html/inicisubmenu.php');
		laimatge();
	break;
	case 2: //inscripcio o dorsals
	   	if (document.getElementById("menu2").innerHTML!="DORSALS"){
		   	clientSideInclude('submenu', 'html/sbminscripcions.php');
		    clientSideInclude('cos', 'html/inscripciocorrec.php');
	   	}else{
			clientSideInclude('submenu', 'html/sbmllistats.php?tipus=Dorsals');
			laimatge();
		//clientSideInclude('cos', 'html/llistats.php?tipus=Dorsals');
	   	}
	break;
	case 3: //classificació
		clientSideInclude('submenu', 'html/sbmllistats.php?tipus=Classificacio');
		laimatge();
		//clientSideInclude('cos', 'html/llistats.php?tipus=Classificacio');
	break;
	case 4: //fotos
		clientSideInclude('submenu', 'html/sbmfotos.php');
		laimatge();
	break;
	case 5: //reglament
		clientSideInclude('submenu', 'html/inicisubmenu.php');
		clientSideInclude('cos', 'html/cosiframe.php?tipus=Reglament');
		//laimatge();
	break;
	case 6:  //contacte
		clientSideInclude('submenu', 'html/inicisubmenu.php');
		clientSideInclude('cos', 'html/marcmail.php');
		//laimatge();
	break;
	}
	for (i=1;i<=6;i++){
		if (i==opcio.valueOf()){
		document.getElementById("menu" + i).className="menusel";
		css="menusel";
		}else{
		document.getElementById("menu" + i).className="menu";
			}
		}
	}
	
	function fover(opcio){
		css=document.getElementById("menu" + opcio).className;
		document.getElementById("menu" + opcio).className="menuon";
		}
	function fout(opcio){
		document.getElementById("menu" + opcio).className=css;
		}
		
	function alfaover(opcio){
		css=document.getElementById("ll" + opcio).className;
		document.getElementById("ll" + opcio).className="Text24on";
		}
	function alfaout(opcio){
		document.getElementById("ll" + opcio).className=css;
		}
				

	
	