// JavaScript Document


function moveLeft(id)
{
     document.getElementById(id).scrollLeft+=3 
     timerUp=setTimeout("moveLeft('"+id+"')",10)
}

function moveRight(id)
{
     document.getElementById(id).scrollLeft-=3 
     timerUp=setTimeout("moveRight('"+id+"')",10)
}

function switchMain(url, urlb)
{
		document.getElementById("mainPhotoGall").src=url;
		document.getElementById("mainPhotoGallH").href=urlb;
}