function submenuin(id){
	document.getElementById("menu" + id).className="seleccionado";
	document.getElementById("submenu" + id).style.display="block";
}

function submenuout(id,seccion){
	//var idAux;
	//if(id==3){
	//	idAux=5
	//}else{
	//	if(id==4){
	//		idAux=6
	//	}else{
	//		idAux=id
	//	}
	//}	
	if(id!=seccion){
		document.getElementById("menu" + id).className="noseleccionado";
	}	
	document.getElementById("submenu" + id).style.display="none";
}

function submenuin2(id){
	document.getElementById("menu" + id).className="seleccionado";
}

function submenuout2(id,seccion){
	if(id!=seccion){
		document.getElementById("menu" + id).className="noseleccionado";
	}	
}

function votarEncuesta(){
	document.getElementById("votar").submit();
}

$(function() {
	$('div.etip').tipsy();
});

function enviarOpinion(){
	var texto=""
	
	if(document.getElementById("formulario").nombre.value==""){
		texto+="* Debe indicar su nombre.\n"
	}
	
	if(document.getElementById("formulario").apellidos.value==""){
		texto+="* Debe indicar sus apellidos.\n"
	}
	
	if(document.getElementById("formulario").comentarios.value==""){
		texto+="* Debe indicar su comentario.\n"
	}
	
	if(texto!=""){
		alert(texto);
	}else{
		document.getElementById("formulario").submit();
	}
}
