/*** JUMP MENU (Idiomes) ***/
function MM_jumpMenu(targ,selObj,restore){ //v3.0
  eval(targ+".location='"+selObj.options[selObj.selectedIndex].value+"'");
  if (restore) selObj.selectedIndex=0;
}

/*** MENU DESPLEGABLE (Productos) ***/
function cambiar(){
	var a = document.getElementById("productos");
	var menu = document.getElementById("menu_desplegable");
	
	menu.style.display = "block";
	a.style.backgroundPosition = "0 62px";
	a.style.color = "#2074a9";
	a.style.fontWeight = "bold";
}
	
function resetear(){
	var menu = document.getElementById("menu_desplegable");
	menu.style.display = "none";
	var a = document.getElementById("productos");
	a.style.backgroundPosition = "left bottom";
}

/*** CARGAR CAPA (Donde estamos) ***/
function cargar(id_c){
	var capa = "";
	var id = "";	
	for(var i=1; i<=6; i++){
		id = "c"+i;
		if (i == id_c){
			$("#"+id).fadeIn("slow");
			window.location = "#"+id;
		}
		else{
			capa = document.getElementById(id);
			capa.style.display = "none";
		}
	}
}