Доброго времени суток, увожаемые форумчане пжл подскажите не могу понять почему не скрывает скрипт выпадающий список т.е. это меню в виде аккордиона , вот код:
jQuery.fn.initMenu = function() {
return this.each(function(){
var theMenu = $(this).get(0);
$jq('.acitem', this).hide();
$jq('li.expand > .acitem', this).show();
$jq('li.active > .acitem', this).show();
$jq('li.expand > .acitem', this).prev().addClass('active');
$jq('li.parent a', this).click(
function(e) {
e.stopImmediatePropagation();
var theElement = $jq(this).next();
var parent = this.parentNode.parentNode;
if($(parent).hasClass('noaccordion')) {
if(theElement[0] === undefined) {
window.location.href = this.href;
}
$jq(theElement).slideToggle('normal', function() {
if ($jq(this).is(':visible')) {
$jq(this).prev().addClass('active');
}
else {
$jq(this).prev().removeClass('active');
}
});
return false;
}
else {
if(theElement.hasClass('acitem') && theElement.is(':visible')) {
if($(parent).hasClass('collapsible')) {
$jq('.acitem:visible', parent).first().slideUp('normal',
function() {
$jq(this).prev().removeClass('active');
}
);
return false;
}
return false;
}
if(theElement.hasClass('acitem') && !theElement.is(':visible')) {
$jq('.acitem:visible', parent).first().slideUp('normal', function() {
$jq(this).prev().removeClass('active');
});
theElement.slideDown('normal', function() {
$jq(this).prev().addClass('active');
});
return false;
}
}
}
);
});
};
$jq(document).ready(function() {$jq('.menu_acordeon').initMenu();});