// JavaScript Document
function menuOver(menu){	
	//var ssize='url(imgs/menu_over_' + menu + '.png)';
	//document.getElementById(menu).style.backgroundImage=ssize;
	document.getElementById(menu).style.backgroundImage='url(imgs/mnu_cen_sel.png)';
}

function menuOut(menu){
	//document.getElementById(menu).style.backgroundImage='';
	document.getElementById(menu).style.backgroundImage='url(imgs/mnu_cen.png)';
}


function submenuOver(submenu){
	document.getElementById(submenu).style.backgroundImage='url(imgs/sub_cen_sel.png)';
}

function submenuOut(submenu){
	document.getElementById(submenu).style.backgroundImage='url(imgs/sub_cen.png)';
}

function navegaMenu(menu,submenu,accion){
	document.frmupn.axn.value=accion;
	document.frmupn.hmenu.value=menu;
	document.frmupn.hsub.value=submenu;	
	document.frmupn.submit();
}

function navegaMenuOpcion(menu,submenu,accion,opcion){
	document.frmupn.opcion.value=opcion;
	document.frmupn.axn.value=accion;
	document.frmupn.hmenu.value=menu;
	document.frmupn.hsub.value=submenu;	
	document.frmupn.submit();
}

function navegaEventoTaller(id,opcion){
	document.frmupn.id.value=id;
	document.frmupn.opcion.value=opcion;
	document.frmupn.axn.value='eventostaller';
	document.frmupn.hmenu.value=0;
	document.frmupn.hsub.value='Eventos Taller';		
	document.frmupn.btnenviar.click();
}