/// JavaScript Document
var thumbURLs = new Array();
var imageURLs = new Array(); //array to store the image urls
var scrim = new Array();
var imgCaption = new Array();
var tnWidth = new Array();

/* * PUT YOUR IMAGES HERE * */
thumbURLs[0]="/html/images/sponsors/bellcanada.gif";
imageURLs[0]="";
imgCaption[0]="Bell Canada Enterpries";
tnWidth[0]=127;
thumbURLs[1]="/html/images/sponsors/canadian_tire_logo.gif";
imageURLs[1]="";
imgCaption[1]="Canadian Tire";
tnWidth[1]=135;
thumbURLs[2]="/html/images/sponsors/CapitalM.gif";
imageURLs[2]="";
imgCaption[2]="Capital M";
tnWidth[2]=56;
thumbURLs[3]="/html/images/sponsors/chrisonishi.gif";
imageURLs[3]="";
imgCaption[3]="Chris Onishi";
tnWidth[3]=84;
thumbURLs[4]="/html/images/sponsors/diamondstonebridge.gif";
imageURLs[4]="";
imgCaption[4]="Diamond Stone Bridge";
tnWidth[4]=310;
thumbURLs[5]="/html/images/sponsors/dufferinconstruction.gif";
imageURLs[5]="";
imgCaption[5]="Dufferin Construction";
tnWidth[5]=32;
thumbURLs[6]="/html/images/sponsors/giantFM.gif";
imageURLs[6]="";
imgCaption[6]="Giant FM 91.7";
tnWidth[6]=74;
thumbURLs[7]="/html/images/sponsors/highlandpackers.gif";
imageURLs[7]="";
imgCaption[7]="High Landpackers";
tnWidth[7]=122;
thumbURLs[8]="/html/images/sponsors/John-Howard-Society-Hamilton.gif";
imageURLs[8]="";
imgCaption[8]="John Howard Society Hamilton";
tnWidth[8]=193;
thumbURLs[9]="/html/images/sponsors/mystique.gif";
imageURLs[9]="";
imgCaption[9]="Mystique";
tnWidth[9]=51;
thumbURLs[10]="/html/images/sponsors/Niagara-Antique-Power-Association.gif";
imageURLs[10]="";
imgCaption[10]="Niagara Antique Power Association";
tnWidth[10]=305;
thumbURLs[11]="/html/images/sponsors/performancecollision&glass.gif";
imageURLs[11]="";
imgCaption[11]="Performance Collision & Glass";
tnWidth[11]=260;
thumbURLs[12]="/html/images/sponsors/Powell_LogoNew.gif";
imageURLs[12]="";
imgCaption[12]="Powell";
tnWidth[12]=63;
thumbURLs[13]="/html/images/sponsors/rankin-construction.gif";
imageURLs[13]="";
imgCaption[13]="Rankin Construction";
tnWidth[13]=191;
thumbURLs[14]="/html/images/sponsors/thorald.gif";
imageURLs[14]="";
imgCaption[14]="Thorald Auto PARTS";
tnWidth[14]=93;
thumbURLs[15]="/html/images/sponsors/united-way-canada.gif";
imageURLs[15]="";
imgCaption[15]="United Way Canada";
tnWidth[15]=173;
thumbURLs[16]="/html/images/sponsors/united-way-niagara-falls-and-greater-fort-erie.gif";
imageURLs[16]="";
imgCaption[16]="United Way Niagara Falls & Greater Fort Erie";
tnWidth[16]=287;

var delay = 80; //time in ms between change of position
var move = 1; //how far does it move at once, in pixels
var imgsLength = imageURLs.length-1;

function hscroller_init() {
	var imgstr="";
	var tempOffset=0;
	for(var i=0; i<imageURLs.length; i++) {
		imgstr+=("<div id='scrim" +i+"' style='position:absolute;left:"+tempOffset+"px;'>"
				 +"<a href='"+imageURLs[i]+"' target='_blank' title='"+imgCaption[i]+"'>"
				 +"<img  src='"+thumbURLs[i]+"'  alt='"+tempOffset+"' border='0'\/>"
				 +"<\/a><\/div>");
		tempOffset+=tnWidth[i];
	}
	$('scroller').innerHTML=("<div id='container' style='position:absolute;overflow:show;'>"
		+imgstr
		+"<\/div>"
	);
	for (var k=0; k<=imgsLength; k++){
		scrim[k] = $("scrim"+k);
	}
	scroll();
}

function scroll() {
	var imd = $("container");
	for(var j=0; j<=imgsLength; j++) {
		if(parseInt(scrim[j].getStyle('left'))<(-tnWidth[j])) {
			if (j==0) {
				var currentLeft=parseInt(scrim[imgsLength].getStyle('left'));
				scrim[j].setStyle({left:(currentLeft+tnWidth[imgsLength])+"px"});;
			}else{
				var currentLeft=parseInt(scrim[j-1].getStyle('left'));
				scrim[j].setStyle({left:(currentLeft+tnWidth[j-1])+"px"});
			}
		}
		scrim[j].setStyle({left:(parseInt(scrim[j].getStyle('left'))-move)+"px"});
	}
	setTimeout("scroll()", delay);
}
