//.animate({ top: "-=5px" }, 'slow');


//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(){
}


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

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


clubMenu.comenzar_salida();

} 

this.comenzar_salida=function()
{

clubMenu.comenzar_aparecediv();
}



this.comenzar_aparecediv=function()
{



/* global Nav */
$('#navegl li.principmen').hover( function() {

$(this).addClass('hover').children('ul.baseMenu').addClass('hover');//.animate({ top: "+=5px" }, 'slow');

}, function() {

$(this).removeClass('hover').children('ul.baseMenu').removeClass('hover');//.animate({ top: "-=5px" }, 'slow');

});




}

clubMenu.comenzar();
}



