var entfernung=1;
var richtung=1;

window.setInterval("div_scrollen()",5);
//window.setInterval("start()",8000); 
//start();

//var xmlHttp = getXMLHTTPRequest();

function div_scrollen(){
	entfernung=entfernung+richtung;
	document.getElementById('scrollerBereich').style.left='-'+(entfernung)+'px';
	document.getElementById('rundgang').style.left=entfernung+'px';
	if(entfernung>510) {
		richtung=-1;
	}
	if(entfernung<1) {
		richtung=1;
	}
}

/*
function getXMLHTTPRequest() {
	var xmlHttp = null;
	if (typeof XMLHttpRequest != 'undefined') {
   		xmlHttp = new XMLHttpRequest();
	}
	if (!xmlHttp) {
		try {
       		xmlHttp  = new ActiveXObject("Msxml2.XMLHTTP");
   		} catch(e) {
       		try {
           		xmlHttp  = new ActiveXObject("Microsoft.XMLHTTP");
       		} catch(e) {
         		xmlHttp  = null;
       		}
   		}
	}
	return xmlHttp;
}

function start() {
	if (xmlHttp) {
			xmlHttp.open('GET', 'includes/getStartseitePanorama.php', true);
			xmlHttp.onreadystatechange = anderesBild;
			xmlHttp.send(null);
	}
}

function anderesBild() {
	if (xmlHttp.readyState == 4) {
		var antwort = xmlHttp.responseText;
		document.getElementById("imageContainer").style.backgroundImage = "url(http://www.wolfgang-ise.de/wolfgang-ise.de/"+antwort+")";
		document.getElementById("image").src = antwort;
	}
}
*/