// Browserweiche Auflösung unter 1024px Höhe
if (screen.height <= 1024) 
document.write("<style type='text/css'>@import url('css/low.css');</style>");


function mobile_redirect() {
	if(/iphone|ipod|android|blackberry|mini|windows\sce|palm/i.test(navigator.userAgent.toLowerCase()))
	{
		var question = confirm("Für Smartphones optimierte Version anzeigen?")
	if (question){
		window.location = "http://m.zeitgeist2011.de";
	}
}}

