$(document).ready( function() {
	//Handle external links
	$("a[@rel$=\"external\"]").click(function(){this.target = "_blank";});

	//Check to see if running IE6
	if( $.browser.msie && $.browser.version=="6.0" )
	{
		//IE6 sub menu hover trick
		$("#container #content #leftcol ul#nav li").hover(
			function(){ $(this).children("ul").addClass("hover"); },
			function(){	$(this).children("ul").removeClass("hover");	}
		);
	}

	/*cmx form */
	if(jQuery.browser.mozilla) {
		$("form.cmxform").hide().find("label:not(.nocmx)").each(function(){
			var $labelContent = $(this).html();
			var $labelWidth = $(this).css("width");
			$(this).empty();
			$(this).append('<span style="display: block; width: '+$labelWidth+';">');
			$(this).prepend("</span>");
			$(this).css("display", "-moz-inline-box");
			$(this).find("span").html($labelContent);
			$("form.cmxform").show();
		});
	};
});
