$(document).ready(function() {

	///
	/// fix all IE6 issues.
	///
	if(IE6) {

		/// lack of CSS selector support

		// fix flickering background images
		document.execCommand("BackgroundImageCache",false,true);
		
	}
	
	///
	/// Set content min-height to height of nav menu
	///
	var menuHeight = $("div#nav").height();
	$("div#content").css("min-height", (menuHeight-23) + "px")
	if((IE6) && ($("div#content").height() < (menuHeight-23))) {
		$("div#content").css("height", (menuHeight-23) + "px")
	}

	$("#content a").attr("target", "_blank");

});