$(function () {
	if ($.browser.msie && $.browser.version == '6.0') {
		$('#header ul#primaryNavigation li:first-child, #header #topNav li:first-child, #footer ul li:first-child, #secondaryContent .callouts div:first-child')
			.addClass('first-child');
		$('input[type="hidden"]').addClass('hidden');
		$('#header ul#primaryNavigation li')
			.bind('mouseenter', function () {$(this).addClass('hover');})
			.bind('mouseleave', function () {$(this).removeClass('hover');});
		DD_belatedPNG.fix('#header a#logo, #footerReflection, #secondaryContent .callouts div blockquote, #secondaryContent .callouts div blockquote p');
	}
});