var file = "assets/ausstellungen/pano01.jpg";

document.write("<div id='panorama'><img src='"+file+"' ><a id='moveleft'>&larr;</a><a id='moveright'>&rarr;</a></div>");

$("#moveleft").mouseover(function(){ moving = true; move(3); })
$("#moveright").mouseover(function(){ moving = true; move(-3); })

$("#panorama a").mouseout(function(){ moving = false; })

var moving = false;

function move(step) {
	var newPos = parseInt($("#panorama img").css("left")) + step;
	
	if (newPos > 0 || newPos < ($("#panorama img").width()-940)*-1) return false;
	
	$("#panorama img").css("left", newPos);
	if (moving) setTimeout("move("+step+")", 5);
}
