function startonload() {
	liveSearchInit();
	loadbanner();
	checkcookie();
}


function loadbanner() {
	var browserwidth = document.body.offsetWidth;

	if (browserwidth >= 1200 && document.getElementById('promobanner')) {
		document.getElementById('promobanner').style.display = "block";
	}
	
	var allPageTags = document.getElementsByTagName("*");
	for (var i = 0; i < allPageTags.length; i++) {
		if (allPageTags[i].className=='bannerscript') { 
			allPageTags[i].style.display='block'; 
		}
	}

}



function selectbox(a) {
	document.getElementById(a).checked = true;
}


function checkcookie() {
	if (!document.cookie){
		document.body.innerHTML = "<div id='infobartop'><b>Sie haben Cookies deaktivert! </b>Um in unserem Shop bestellen zu können, müssen Sie Cookies aktivieren.</div>"+document.body.innerHTML;
	}
}