Установка проста, создаем через блокнот html файл и вставляем туда данный скрипт
Code
<center>
<script type="text/javascript">
var Timer;
function ScrollLeft()
{
Timer = setInterval("document.getElementById('PANORAMA').scrollLeft -= 2", 15);
}
function ScrollRight()
{
Timer = setInterval("document.getElementById('PANORAMA').scrollLeft += 2", 15);
}
</script>
<div id="PANORAMA" style="width:1100px; height:685px; border: 1px solid;
overflow:hidden">
<img src="http://картинка.jpg" alt="" />
</div>
<div style="width:1100px; text-align:center">
<input type="button" value="< Прокрутить в лево" title="Scroll left" style="width:170px"
onmousedown="ScrollLeft()"
onmouseup="clearInterval(Timer)">
<input type="button" value="На главную" style="width:140px" href="http://criuleni.do.am">
<input type="button" value="Прокрутить в право >" title="Scroll right" style="width:170px"
onmousedown="ScrollRight()"
onmouseup="clearInterval(Timer)">
</div></center>