jQuery(function($) {
$('#mainNav > a:path').children().addClass('active');
});
jQuery(function($) {
$('#subNav > ul a:path').parent().addClass('active');
});
jQuery(function($) {
	if (BrowserDetect.browser == 'Explorer' && BrowserDetect.version == '6'){
		originalHeaderPhotoSrc = $("#headerPhotosArea img").attr("src");
		ie6FriendlyHeaderPhotoSrc = originalHeaderPhotoSrc.replace("png","jpg");
		$("#headerPhotosArea img").attr({
			src : ie6FriendlyHeaderPhotoSrc
		});
	}
});
