// JavaScript Document
window.onload = function()
{
	breite = document.body.offsetWidth;
	if(breite > 1150)
	{
	  	window.location.href = "big/index.html";
	}else{
	  	window.location.href = "norm/index.html";
	}
}
