// JavaScript Document

/*function mostrar(capa)
{
	document.getElementById('subMenu').style.display = 'block';
	document.getElementById('cimpro').style.backgroundPosition = "bottom";
}
function desplegar(capa)
{
	$("#subMenu").fadeIn("slow");
}
function plegar(capa)
{
	$("#subMenu").fadeOut("slow");
}

function ocultar(capa)
{
	document.getElementById('subMenu').style.display = "none";
	document.getElementById('cimpro').style.backgroundPosition = "top";
}*/

// MOSTRAR Y OCULTAR MENU con JQUERY

$(document).ready(function() {
	$('#ulMenu li:has(#subMenu)').hover(
		function(e)
		{
			//$(this).find('#subMenu').slideDown();
			$(this).find('#subMenu').show();
			document.getElementById('cimpro').style.backgroundPosition = "bottom";
		},
		function(e)
		{
			//$(this).find('#subMenu').slideUp();
			$(this).find('#subMenu').hide();
			document.getElementById('cimpro').style.backgroundPosition = "top";
		}
	);
});
