this code working fine with internet explorer but not with mozilla and chrome
function initMenu() {
$('.categories_list ul').hide();
$('.categories_list li a').click(
function() {
$(this).next().slideToggle('normal');
}
);
}
$(window).load(function() {initMenu();});
wht to be done ???