// BANNER ROTATION	/*	First, if you load fewer or more than 5 sponsors		into your rotator, change the "sponnr" variable		to the actual number of sponsor .gifs you plan to		load. 	*/	number_of_sponsors=4;// RANDOM LOAD URL AND BANNER ADSvar randomnumber = Math.random();	var rand1 = Math.round( (randomnumber * 4) );		// IMAGES	images = new Array	images[0]="images/quote1.gif";	images[1]="images/quote2.gif";	images[2]="images/quote3.gif";	images[3]="images/quote4.gif";		// ALT TAG	tags = new Array	tags[0] ="quality: exceeding client expectations"	tags[1] ="customized: creating solutions that work for you"	tags[2] ="flexible: adapting solutions to meet your needs"	tags[3] ="cost-effective: providing solutions you can afford"	var image = images[rand1]	var tag = tags[rand1]var sctr=rand1;// var halt=0;var isn=new Array();for (i=0; i<number_of_sponsors; i++){	isn[i] = new Image();}	/*	The sponsor .gif names are loaded into the isn[x]		sponsor images array.  You may load any number of		sponsor images (.gif or .jpg or both) into this		array. They must all be the same size, however.		Substitute your own .gif filenames for the ones		shown here. Note that the first .gif must appear		in the isn[0] array element. 	*/function populate_array() {	isn[0].src="images/quote1.gif";	isn[1].src="images/quote2.gif";	isn[2].src="images/quote3.gif";	isn[3].src="images/quote4.gif";}	populate_array();	/* Finally, replace the URL's below with those of	   your sponsors IN THE SAME ORDER. 	*/	var durl=new Array();	durl[0]="quality: exceeding client expectations";	durl[1]="customized: creating solutions that work for you";	durl[2]="flexible: adapting solutions to meet your needs";	durl[3]="cost-effective: providing solutions you can afford";	/* This script is set to rotate every 20 seconds.	   (5000=5 seconds, so 30000 would equal 30, etc)	   You should change the number in the setTimeout()	   call below for the number of seconds you wish. 	*/function rotateIt() {	// if (halt != 1){		populate_array();		sctr++;  		if (sctr > number_of_sponsors-1) {			populate_array();   			sctr=0;   		}  		document.sponsor.src = isn[sctr].src;  		setTimeout("rotateIt()",8000);  // }}	/* This code will work just fine with or without	   frames.  However, if you are in frames and wish	   to replicate the TARGET="_top" call to remove	   frames, change the location.href call to:	   parent.location.href=durl[sctr];	   below. 	*///function doIt() {	// halt=1; 	// location.href=durl[sctr];//	window.open(durl[sctr]);//}//function dispIt() {// 	parent.window.status=durl[sctr];//}