// JavaScript Document

var BrowserDetect =

{
	
	init: function()
	
	{
		
		var browser=navigator.appName;
		
		if ( browser == "Microsoft Internet Explorer" ) {
			
			//alert(browser);
			
			var aboutNavLeftThird = document.getElementById("about_nav_left_third");
			Core.removeClass(aboutNavLeftThird, "aboutnavleftthird");
			Core.addClass(aboutNavLeftThird, "navleftthird");
			
			var aboutNavMiddleThird = document.getElementById("about_nav_middle_third");
			Core.removeClass(aboutNavMiddleThird, "aboutnavmiddlethird");
			Core.addClass(aboutNavMiddleThird, "navmiddlethird");
			
			var aboutNavRightThird = document.getElementById("about_nav_right_third");
			Core.removeClass(aboutNavRightThird, "aboutnavrightthird");
			Core.addClass(aboutNavRightThird, "navrightthird");
			
		}
		
	}
	
}

Core.start(BrowserDetect);