$(document).ready(function() {
$("#nav li > ul").each(function() {
$(this).hide();
});
var base = $('base').attr("href");
$("#nav a").each(function(){
if (base + $(this).attr("href") == window.location) {
$(this).parents().show();
return false;
}
});
$("#nav a").click(function(){
if (!$(this).attr("href")) {
$(this).next().toggle();
}
});
});