var isIE6 = (jQuery.browser.msie && jQuery.browser.version < 7);

jQuery(document).ready(function () {
/*
********************************************************************************
	IE6 CODE
********************************************************************************
*/	
	if (isIE6) {
		jQuery('ul#globalSignIn li:first-child, ul#subNav li:first-child, #footer ul li:first-child, ul#breadcrumbs li:first-child').addClass('first-child');

		var posY = 0; // USED TO STORE CURRENT BACKGROUND-POSITION-Y SO THE ACTIVE NAV POINT DOES NOT REVERT TO DEFAULT IF THE USER HOVERS OVER THEN OFF
		jQuery('ul#mainNav li').hover(function () {
			posY = jQuery(this).css('background-position-y');
			jQuery(this).css('background-position-y','-67px');
		}, function () {
			jQuery(this).css('background-position-y', posY);
		});
		
	}
});
