/******************************************************************************
 * ACG Global functions.
 * jQuery framework is required.
 * 
 * Author: Neal Krouse (krousen@comcast.net)
 *
 ******************************************************************************/

$(function() {
	if (typeof window.XMLHttpRequest == "undefined") {
		/* test for ie6, and add class to make up for lack of li:hover */
		$("#nav li").hover(
			function() {$(this).addClass("hover");},
			function() {$(this).removeClass("hover");}
		);
		
		// correcting non-clicking logo in IE6
		var position = $("#branding a").offset();
		var clone = $("#branding a");
		$("body").append(clone);
		clone.addClass("ie6");
		//alert(position.top + " " + position.left);
		
		$("body").append("<span class='ie6span'><\/span>");
	}
});