function pageScroll(Amount)
	{
		document.getElementById("img_scroller").scrollLeft = parseInt(document.getElementById("img_scroller").scrollLeft) + (parseInt(Amount));
	 	t = setTimeout('pageScroll('+Amount+')',20);
	}

function stopScroll()
	{
		clearTimeout(t)
	}

function Swap(Container, Content)
	{
		document.getElementById(Container).src = Content;
		document.getElementById(Container+"_A").href = Content;
	}