
function turnOn () {
    
    
    // Add browser/platform ID class to facilitate cross-browser hacks
	jQuery('body').addClass(BrowserDetect.browser + BrowserDetect.version + " " + BrowserDetect.OS);
	

	if (BrowserDetect.browser == "Firefox" && BrowserDetect.OS == "Mac")
	{
		  jQuery("#dnn_dnnSEARCH_ClassicSearch").css("margin-top","3px");
		  jQuery("#dnn_dnnSEARCH_txtSearch").css("padding","0px");
		  jQuery(".topbar").css("margin-top","4px");
		
	}
	
	if (BrowserDetect.browser == "Safari" && BrowserDetect.OS == "Mac")
	{
			jQuery(".topbar").css("margin-bottom","15px");
			jQuery("#top_nav").css("padding-top","20px");
			jQuery("#dnn_dnnSEARCH_ClassicSearch").css("margin-top","2px");
			jQuery(".topbar").css("margin-top","5px");
			jQuery("#loginContainer").css("margin-top","-13px");
	}
	
	if (BrowserDetect.browser == "IE" && BrowserDetect.version == "7")
	{
			 jQuery("#dnn_dnnSEARCH_ClassicSearch").css("margin-top","3px");
			  jQuery(".topbar").css("margin-top","5px");
	}
	
		
}

