function scrollCourseInfo(){

	var slideContain = document.getElementById("sliderContainer");
	/*need the initial offset to reset our div to this position once it goes off the screen*/
	var initialLeft = 1100;

	/*give it a width, otherwise it grows as we increase the left offset and it never returns to its starting point*/
	slideContain.style.width = 
	document.getElementById("courseName").offsetWidth + 
	document.getElementById("courseDate").offsetWidth + 
	document.getElementById("courseDesc").offsetWidth + 
	document.getElementById("courseInfo").offsetWidth + 
	document.getElementById("s1").offsetWidth + 
	document.getElementById("s2").offsetWidth + 
	document.getElementById("s3").offsetWidth + 450 + "px";
	
	/*slide it across the screen*/
	slideContain.style.left = slideContain.offsetLeft - 1 + "px";
	
	/*once it scrolls out, go back to the start...*/
	if(slideContain.offsetLeft==((slideContain.offsetWidth * -1)-30)){
		slideContain.style.left = initialLeft + "px";
	}
	setTimeout('scrollCourseInfo()',20);
}

function runPublicModule(){	;
	scrollCourseInfo();
} 
	
