$(function () {
	// IE fixes
	if ($.browser.msie) {
		var lastChildSelectors  = '#secondaryContent .primary .callout:last-child,#header .navigation > li:last-child,#secondaryContent .widgets .widget:last-child';
		$(lastChildSelectors).addClass('last-child');
		if ($.browser.version == '6.0') {
			var firstChildSelectors = '#header .navigation > li:first-child > a,#header .navigation > li:last-child > a,#footer ul li:first-child,#primaryContent .interactions .tools li:first-child';
			$(firstChildSelectors).addClass('first-child');
			$('#header .navigation > li:first-child > a').css({width: '84px'});
			$('#header .navigation > li')
				.bind('mouseenter', function () {
					$(this).addClass('hover');
					if ($(this).is(':last-child')) {
						$('ul', this).css({left: '-41px'});
					}
				})
				.bind('mouseleave', function () {
					$(this).removeClass('hover');
					if ($(this).is(':last-child')) {
						$('ul', this).css({left: '-99999em'});
					}
				});
			$('input[type!=""]').each(function () {
				$(this).addClass($(this).attr('type'));
				$(this)
					.bind('mouseenter', function () {
						$(this).addClass('hover');
					})
					.bind('mouseleave', function () {
						$(this).removeClass('hover');
					});
			});
			DD_belatedPNG.fix('.CM_pngFix');
		}
	}
});