// 
var text = 0;
var image_no = 0;

var pics=new Array();
  pics[0] = "/images/home_featured1.jpg"
  pics[1] = "/images/home_featured2.jpg"
  pics[2] = "/images/home_featured3.jpg"
  pics[3] = "/images/home_featured4.jpg"

var pics2 = new Array() // don't touch this
  pics2[0] = "/images/home_r10_c3.jpg";
  pics2[1] = "/images/home_r10_c3_f2.jpg";

	
function changeText() 
{
  if (pics.length > 0) {
    //document.home_featured.src=pics[text];
	document.getElementById("home_featured").setAttribute("src",pics[text]);

	document.getElementById("home_r10_c3").setAttribute("src",pics2[image_no]);

	if( image_no == 0 )
		image_no = 1;
	else
		image_no = 0;
		
    text++;
  }
  if (text == 4) {text = 0; }  // change the # 4 at the left to the maximum # of message lines you want included
    window.setTimeout("changeText()", 9000); 
}  // change the # on the left to adjust the speed of the
                                               // scroll. The smaller the # the faster the speed
// JavaScript Document