var $j = jQuery.noConflict();


function target(event) {
var element = event.target;
while (element && element.tagName != "LI")
element = element.parentNode;
// more fun with IE, sometimes event.target is empty, just ignore it then
if (!element)
return [];
return element;
}



CCEC = new function(){

}


$j(function()
{
CCEC.Menuprincip=new CcecMenuprincip();
});

function CcecMenuprincip()
{
var yoyo=this;
this.comenzar=function()
{


yoyo.comenzar_salida();

} 

this.comenzar_salida=function()
{

yoyo.comenzar_aparecediv();
}



this.comenzar_aparecediv=function()
{



/* global Nav */
$j('#navegl li.principmen').hover( function() {
$j(this).addClass('hover').children('ul.baseMenu').addClass('hover');
}, function() {
$j(this).removeClass('hover').children('ul.baseMenu').removeClass('hover');
});




}

yoyo.comenzar();
}



