function checkBody() {
	/*
	if (($(".content").height() * 1 - 320) > ($(".filter").height() * 1))
		$(".filter").css({"height": $(".content").height() * 1 - 320 +"px"});
	else $(".filter").css({"height": "auto"});
	*/
}

$(document).ready(function(){
	
	checkBody();
	
	$("a[rel='ext']").click(function(){this.target = "_blank";});
	
	var is_ie6 = (window.external &&	typeof window.XMLHttpRequest == "undefined");
	if (is_ie6) return true;
	
	$(".menu li").hover(function(){
		$(this).children("ul").show();
	},function(){
		$(this).children("ul").hide();
	});
	
});
