//#################################################################################
// browserweiche javascript
//#################################################################################
function checkBrowserName(name){
   var agent = navigator.userAgent.toLowerCase();
   if (agent.indexOf(name.toLowerCase())>-1) {
     return true;
   }
   return false;
}
browser = [];
browser["IE6"] = checkBrowserName('MSIE 6');
browser["IE7"] = checkBrowserName('MSIE 7');
browser["IE8"] = checkBrowserName('MSIE 8');
browser["opera"] = checkBrowserName('opera');
browser["safari"] = checkBrowserName('safari');
browser["firefox"] = checkBrowserName('firefox');
//#################################################################################
// init
//#################################################################################
function init(){
	var inhalt = document.getElementById("section");
	var h = inhalt.offsetHeight;
	if(browser["IE6"]){
		document.getElementById("section_bg").style.height = h+"px";
	}
}

