For some reason, every piece of code that's below this snippet won't run...
I don't see anything wrong with it ...
window.navigationDropdownTimeout = 0;
$(".navigation li.expanded > a").hover(function(){
clearTimeout(window.navigationDropdownTimeout);
$(".navigation ul ul.menu").hide();
currentSubnav = $(this).next();
currentSubnav.fadeIn();
currentSubnav.hover( function(){
clearTimeout(window.navigationDropdownTimeout);
$(this).fadeIn("fast");
}, function(){
thisHere = $(this);
window.navigationDropdownTimeout = window.setTimeout(function(){thisHere.fadeOut("fast");},1500);
});
});