$(function(){
    $(window).bind("resize",adjustFiller);
	adjustFiller();
	$(".IE6 li, .IE6 li, .IE6 .Quicklinks").hover(function(){$(this).addClass('hover');}, function(){$(this).removeClass('hover');});
    $('#mnav li').css('cursor','pointer').click(function(e){e.stopPropagation(); if(this.firstChild.href)window.location=this.firstChild.href;});
    $("a[rel=external]").live("click", function(){this.target="_blank"}); 
});
function adjustFiller(){
	var needed = $(window).height() - $('#filler').offset().top;
	if(needed > 0)
		$("#filler").css("height",needed+"px");
	else
		$("#filler").css("height","0");
}


