
		/*
		Left-Right image slideshow Script-
		By Dynamic Drive (www.dynamicdrive.com)
		For full source code, terms of use, and 80's more scripts, visit http://dynamicdrive.com
		*/
		
		///////configure the below four variables to change the style of the slider///////
		//set the scrollerwidth and scrollerheight to the width/height of the LARGEST image in your slideshow!
		var scrollerwidth='580px'
		var scrollerheight='46px'
		var scrollerbgcolor=''
		//3000 miliseconds=3 seconds
		var pausebetweenimages=0
		
		function showSponsor(htmlToDisplay){
			window.open(htmlToDisplay, "contents_frame");
		}
		
		
		//configure the below variable to change the images used in the slideshow. If you wish the images to be clickable, simply wrap the images with the appropriate <a> tag
		var slideimages=new Array()
		slideimages[0]= '<a href="javascript:showSponsor(\'contents_sponsor1.html\');"><img class="sponsor"  src="images/sponsor1.jpg"></a>'
						 + '<a href="javascript:showSponsor(\'contents_sponsor2.html\');"><img class="sponsor" src="images/sponsor2.jpg"></a>'
						 + '<a href="javascript:showSponsor(\'contents_sponsor3.html\');"><img class="sponsor" src="images/sponsor3.jpg"></a>'
						 + '<a href="javascript:showSponsor(\'contents_sponsor4.html\');"><img class="sponsor" src="images/sponsor4.jpg"></a>'
		
						 
		slideimages[1]= '<a href="javascript:showSponsor(\'contents_sponsor5.html\');"><img class="sponsor"  src="images/sponsor5.jpg"></a>'
						 + '<a href="javascript:showSponsor(\'contents_sponsor6.html\');"><img class="sponsor" src="images/sponsor6.jpg"></a>'
						 + '<a href="javascript:showSponsor(\'contents_sponsor7.html\');"><img class="sponsor" src="images/sponsor7.jpg"></a>'
						 + '<a href="javascript:showSponsor(\'contents_sponsor8.html\');"><img class="sponsor" src="images/sponsor8.jpg"></a>'
		
		slideimages[2]= '<a href="javascript:showSponsor(\'contents_sponsor9.html\');"><img class="sponsor"  src="images/sponsor9.jpg"></a>'
						 + '<a href="javascript:showSponsor(\'contents_sponsor10.html\');"><img class="sponsor" src="images/sponsor10.jpg"></a>'
						 + '<a href="javascript:showSponsor(\'contents_sponsor11.html\');"><img class="sponsor" src="images/sponsor11.jpg"></a>'
						 + '<a href="javascript:showSponsor(\'contents_sponsor12.html\');"><img class="sponsor" src="images/sponsor12.jpg"></a>'
		
		//extend this list
		
		///////Do not edit pass this line///////////////////////
		     
		var ie=document.all
		var dom=document.getElementById
		
		if (slideimages.length>1)
		i=2
		else
		i=0
		
		function move1(whichlayer){
		tlayer=eval(whichlayer)
		if (tlayer.left>0&&tlayer.left<=3){
		tlayer.left=0
		setTimeout("move1(tlayer)",pausebetweenimages)
		setTimeout("move2(document.main.document.second)",pausebetweenimages)
		return
		}
		if (tlayer.left>=tlayer.document.width*-1){
		tlayer.left-=3
		setTimeout("move1(tlayer)",80)
		}
		else{
		tlayer.left=parseInt(scrollerwidth)+3
		tlayer.document.write(slideimages[i])
		tlayer.document.close()
		if (i==slideimages.length-1)
		i=0
		else
		i++
		}
		}
		
		function move2(whichlayer){
		tlayer2=eval(whichlayer)
		if (tlayer2.left>0&&tlayer2.left<=3){
		tlayer2.left=0
		setTimeout("move2(tlayer2)",pausebetweenimages)
		setTimeout("move1(document.main.document.first)",pausebetweenimages)
		return
		}
		if (tlayer2.left>=tlayer2.document.width*-1){
		tlayer2.left-=3
		setTimeout("move2(tlayer2)",80)
		}
		else{
		tlayer2.left=parseInt(scrollerwidth)+3
		tlayer2.document.write(slideimages[i])
		tlayer2.document.close()
		if (i==slideimages.length-1)
		i=0
		else
		i++
		}
		}
		
		function move3(whichdiv){
		tdiv=eval(whichdiv)
		if (parseInt(tdiv.style.left)>0&&parseInt(tdiv.style.left)<=3){
		tdiv.style.left=0+"px"
		setTimeout("move3(tdiv)",pausebetweenimages)
		setTimeout("move4(scrollerdiv2)",pausebetweenimages)
		return
		}
		if (parseInt(tdiv.style.left)>=tdiv.offsetWidth*-1){
		tdiv.style.left=parseInt(tdiv.style.left)-3+"px"
		setTimeout("move3(tdiv)",80)
		}
		else{
		tdiv.style.left=scrollerwidth
		tdiv.innerHTML=slideimages[i]
		if (i==slideimages.length-1)
		i=0
		else
		i++
		}
		}
		
		function move4(whichdiv){
		tdiv2=eval(whichdiv)
		if (parseInt(tdiv2.style.left)>0&&parseInt(tdiv2.style.left)<=3){
		tdiv2.style.left=0+"px"
		setTimeout("move4(tdiv2)",pausebetweenimages)
		setTimeout("move3(scrollerdiv1)",pausebetweenimages)
		return
		}
		if (parseInt(tdiv2.style.left)>=tdiv2.offsetWidth*-1){
		tdiv2.style.left=parseInt(tdiv2.style.left)-3+"px"
		setTimeout("move4(scrollerdiv2)",80)
		}
		else{
		tdiv2.style.left=scrollerwidth
		tdiv2.innerHTML=slideimages[i]
		if (i==slideimages.length-1)
		i=0
		else
		i++
		}
		}
		
		function startscroll(){
		if (ie||dom){
		scrollerdiv1=ie? first2 : document.getElementById("first2")
		scrollerdiv2=ie? second2 : document.getElementById("second2")
		move3(scrollerdiv1)
		scrollerdiv2.style.left=scrollerwidth
		}
		else if (document.layers){
		document.main.visibility='show'
		move1(document.main.document.first)
		document.main.document.second.left=parseInt(scrollerwidth)+3
		document.main.document.second.visibility='show'
		}
		}
