Mmmmm...
Pagaste por eso ya? xD
Bueno, sobre tu duda, prueba reemplazando esto
Código:
$("ul.bzMenuStyle li").click(function(e){
$(this).children("ul").show();
$(this).siblings().children("ul").hide();
}, function(){
if(!$(this).hasClass("active"))$(this).children("ul").hide();
$(this).siblings(".active").children("ul").show();
});
Por esto
Código:
$("ul.bzMenuStyle li").click(function(e){
e.preventDefault();
$(this).children("ul").show();
$(this).siblings().children("ul").hide();
});
Saludos