<!--
// ==============================
// SET VARIABLES
// ==============================


// ==============================
// RUN ALL ONLOAD JQUERY COMMANDS
// ==============================
	// Run nav code if this is IE6
if (jQuery.browser.msie && jQuery.browser.version == '6.0') {
	$(document).ready(function() {					   
		// The isIE variable is set in the page.tpl.php file
		$('#navigation ul li').mouseover(function() {
			$(this).children('ul').css({left:'auto'});
		});
		$('#navigation ul li').mouseout(function() {
			$(this).children('ul').css({left:'-999em'});
		});
	});
}
//-->  
