//#################################################################################
// browserweiche javascript
//#################################################################################
function checkBrowserName(name){
   var agent = navigator.userAgent.toLowerCase();
   if (agent.indexOf(name.toLowerCase())>-1) {
     return true;
   }
   return false;
}
//alert(navigator.userAgent.toLowerCase());
var browser = [];
browser["IE6"] = checkBrowserName('MSIE 6');
browser["IE7"] = checkBrowserName('MSIE 7');
browser["IE8"] = checkBrowserName('MSIE 8');
browser["IE"] = checkBrowserName('MSIE');

browser["opera"] = checkBrowserName('opera');
browser["safari"] = checkBrowserName('safari');
browser["firefox"] = checkBrowserName('firefox');
browser["mobile"] = checkBrowserName('mobile');
// alert(browser["IE6"]+"/"+browser["IE7"]+"/"+browser["IE8"]);
//#################################################################################
// init
//#################################################################################
function nav(mc,flag){
	if(flag){
		mc.style.backgroundImage="url(code/nav_bg_over.gif)";
		mc.style.fontWeight = "bold";	
	}else{
		mc.style.backgroundImage="url(code/nav_bg.gif)";	
		mc.style.fontWeight = "normal";	
	}
}

