var galleryDrops = {
init:function() {
var $j = jQuery.noConflict(); // needed to work with mootools
// Use jQuery via $j(...)
$j(document).ready(function(){
$j('li.title').siblings('li').hide();
$j('li.title').click(function(){
var $nextli = $j(this).nextAll('li');
var $nextliVisible = $j(this).nextAll('li:visible');
var $visibleSiblings = $j('li:not(.title):visible');
if ($visibleSiblings.length) {
if($visibleSiblings[0] == $nextliVisible[0]) {
// open title clicked so slide back up
$nextli.slideUp('fast');
return false;
}
// slide up previous visible menu then slide down new menu
$visibleSiblings.slideUp('fast', function(){
$nextli.slideDown('fast');
});
}
else {
$nextli.slideToggle('fast');
}
});
});
}
}
name is undefined
galleryName(undefined)ajax.functions.js (line 1718)
updateGalleriesMenu("venezuela:5:|")ajax.functions.js (line 233)
updateGalleries("venezuela:5:|")ajax.functions.js (line 137)
callback()()cpaint2....ressed.js (line 64)
[Break on this error] if (!show_gallery_number) name = name.replace(/^[0-9]*-/g,"");