var a;
a = 1;
function SCRmoveit(){
		currentMargin=document.getElementById("SCRcontainAll").style.marginLeft
		currentMargin=currentMargin.replace("px","")
		if (currentMargin=="-4001"){
			currentMargin=0
		}
		currentMargin=(currentMargin-1)+"px"
		document.getElementById("SCRcontainAll").style.marginLeft=currentMargin
		SCRinit()
	}
function SCRinit(){
		document.getElementById("SCRwindow2").innerHTML = document.getElementById("SCRwindow1").innerHTML
		var t=setTimeout("SCRmoveit()",15);
}

function startimgs() {
	setInterval("welcomeImg()",5000);
}

function welcomeImg() {
	document.getElementById('welcomeImage').src = "/images/homeImgs/welcomeImg"+a+".jpg";
	a += 1;
	if(a>5){a=1}
}
	
