var agt=navigator.userAgent.toLowerCase();
var is_nav  = ((agt.indexOf('mozilla')!=-1) && (agt.indexOf('spoofer')==-1)
			&& (agt.indexOf('compatible') == -1) && (agt.indexOf('opera')==-1)
			&& (agt.indexOf('webtv')==-1) && (agt.indexOf('hotjava')==-1));
var is_gecko = (agt.indexOf('gecko') != -1);
var is_ie     = ((agt.indexOf("msie") != -1) && (agt.indexOf("opera") == -1));
var is_aol   = (agt.indexOf("aol") != -1);
var is_opera = (agt.indexOf("opera") != -1);

var now=0;
var tim=0;
var noscroll=true;
var speed=20; //timeout between moves; set it lower to increase speed
var move=5; // movement at one step in pixel

function sr(){
	if(!noscroll){
	now=now-move;
	if (is_ie || is_aol) document.all("zimmerpanorama").style.backgroundPosition=now+'px';
  	else document.getElementById("zimmerpanorama").style.backgroundPosition=now+'px';
	tim=setTimeout("sr()",speed);}}

function sl(){
	if(!noscroll){
	now=now+move;
	if (is_ie || is_aol) document.all("zimmerpanorama").style.backgroundPosition=now+'px';
  	else document.getElementById("zimmerpanorama").style.backgroundPosition=now+'px';
	tim=setTimeout("sl()",speed);}}

function stop(){clearTimeout(tim); noscroll=true}

document.write("<style>");
document.write("#zimmerpanorama {display: block; position: relative; z-index: 99; width: 435px; height: 240px; background-image: url(360zimmer.jpg); background-repeat: repeat-x}");
document.write("#scrolllinks img,#scrollrechts img {margin: 0; padding: 0; text-decoration: none; border: #BBBBBB 1px solid}");
document.write("</style>");
document.write("<a href='#' onMouseOver='noscroll=false; sl();' onMouseOut='stop()' id='scrolllinks' style='border: none'><img src='360-links.gif'></a></td><td><div id=\"zimmerpanorama\"></div></td><td><a href='#' onMouseOver='noscroll=false; sr()' onMouseOut='stop()' id='scrollrechts' style='border: none'><img src='360-rechts.gif'></a>");
