$(function () {
	// IE hacks
	if ($.browser.msie) {
		// IE6 hacks
		 if ($.browser.version == '6.0') {
			 // PNG Fixer-upper
			var imagesToTransform		= $('img[src$=".png"]')
											.not('.CM_pngFix')
											.addClass('CM_pngFix');
			DD_belatedPNG.fix('.CM_pngFix');
			// Navigation Fixer-upper
			var primaryNav = $('#header ul.navigation');
			$('> li:first-child', primaryNav).addClass('first-child');
			$('li', primaryNav).hover(
				function () {$(this).addClass('hover');},
				function () {$(this).removeClass('hover');}
			);
		}
		
		$('.callouts ul.logout li:last-child').addClass('last-child');
	}
	// Safari, but not chrome
	if ($.browser.safari && !navigator.userAgent.match('Chrome')) {$('body').addClass('safari');}
	// Firefox (Mac)
	if ($.browser.mozilla && (navigator.userAgent.match('Macintosh'))) {$('body').addClass('firefoxmac');}
});