//javascript document

var opActiva = null;


function canviColorOver(elm){

	var bg = eval("bg"+elm);
	bg.style.backgroundColor = "#FAFAFA";	
	var tit = eval("tit"+elm);
	tit.style.backgroundColor = "#FFCC33";
	
}
function canviColorOut(elm){
	
	var bg = eval("bg"+elm);
	bg.style.backgroundColor = "#FFFFFF";	
	var tit = eval("tit"+elm);
	tit.style.backgroundColor = "#E6E6E6";
}


function menuOver(elm){
	var op = eval("op"+elm);
	op.style.backgroundColor = "#FFCC33";
	op.style.color = "#000000";
	op.style.cursor = "hand";
}

function menuOut(elm){
	var op = eval("op"+elm);
	op.style.backgroundColor = "#CCCCCC";
	op.style.color = "#FFFFFF";
	op.style.cursor = "pointer";
}

function subMenuOver(elm){
	if(elm!=opActiva){
		var subop = eval("subop"+elm);	
		var linkObj = document.getElementById("asubop"+elm);
		
		subop.style.backgroundColor = "#666666";
		linkObj.style.color = "#FFFFFF";
		subop.style.cursor = "hand";
	}
}

function subMenuOut(elm){
	if(elm!=opActiva){
		var subop = eval("subop"+elm);
		var linkObj = document.getElementById("asubop"+elm);
		
		subop.style.backgroundColor = "#EFEFEF";
		linkObj.style.color = "#000000";
		subop.style.cursor = "pointer";
	}
}

