<!-- Begin
	var theImages = new Array() // do not change this
	// To add more image files, continue with the
	// pattern below, adding to the array.
	
	theImages[0] = 'images/billboard1.jpg'
	theImages[1] = 'images/billboard2.jpg'
	theImages[2] = 'images/billboard3.jpg'
	//theImages[3] = 'images/billboard4.jpg'
	//theImages[4] = 'images/billboard5.jpg'
	//theImages[5] = 'images/billboard6.jpg'
	//theImages[6] = 'images/billboard7.jpg'
	
	var theLinks = new Array()
	
	theLinks[0] = 'learn.asp'
	theLinks[1] = 'ask.asp'
	theLinks[2] = 'act.asp'
	//theLinks[3] = 'http://www.google.com'
	//theLinks[4] = 'http://www.google.com'
	//theLinks[5] = 'http://www.google.com'
	//theLinks[6] = 'http://www.google.com'	
	
	var theAlts = new Array()
	
	theAlts[0] = ''
	theAlts[1] = ''
	theAlts[2] = ''
	//theAlts[3] = ''
	//theAlts[4] = ''
	//theAlts[5] = ''
	//theAlts[6] = ''
	
	// delay in milliseconds between image swaps 1000 = 1 second
	var delay = 5000;
	var counter = 0;
	
	function preloadImgs(){
	  for(var i=0;i<theImages.length;i++){
		MM_preloadImages(theImages[i]);
	  }
	}
	
	function randomImages(){
	  if(counter == (theImages.length)){
		counter = 0;
	  }
	  MM_swapImage('rotator', '', theImages[counter]);
	  var link = document.getElementById("thelink");
	  link.href = theLinks[counter];
	  var image = document.getElementById('rotator');
	  image.setAttribute('alt', theAlts[counter]);
	  counter++;
	  setTimeout('randomImages()', delay);
	}
//  End -->
