function init(){
	checkWinSize();
	if(typeof(subInit)=="function")subInit();
}

//onload = init;
//onresize = checkWinSize;

function checkWinSize(){
	if(document.all){
		var css = 'rules';
	}else if(document.getElementById){
		var css = 'cssRules';
	}
	var s = document.styleSheets;
	if(document.body.offsetWidth<=900){
		for(var i=0;i<s.length;i++){
			if(s[i].title == "main"){
				for(var j=0;j<s[i][css].length;j++){
					if(s[i][css][j].selectorText == "#mainMenu li"){
						s[i][css][j].style.margin = "0px 0px 0px 0px";
						s[i][css][j].style.marginLeft = "0px";
					}
					if(s[i][css][j].selectorText == "#mainMenu li"){
						s[i][css][j].style.padding = "2px 3px 3px 3px";
					}
				}
			}
		}
		for(var i=0;i<document.getElementById('mainMenu').childNodes.length;i++){
			if(document.getElementById('mainMenu').childNodes[i].nodeName == "LI"){
				document.getElementById('mainMenu').childNodes[i].style.marginLeft = "0px";
			}
		}

		document.getElementById('layout_Main').style.width="800px";
		document.getElementById('layout_Content').style.width="800px";
		document.getElementById('mainMenu').style.width="580px";
		document.getElementById('layout_Inhalt').style.width="500px";
		document.getElementById('inhalt').style.width="500px";
		if(typeof(sub_checkWinSize)=="function")sub_checkWinSize();
	}
}

function listOver(e_id){
	document.getElementById(e_id).style.backgroundColor="#cfcfcf";
}
function listOut(e_id){
	document.getElementById(e_id).style.backgroundColor="#ffffff";
}

