var howOften = 4; //number often in seconds to rotate
var current = 0; //start the counter at 0
var ns6 = document.getElementById&&!document.all; //detect netscape 6

// place your images, text, etc in the array elements here
var items = new Array();

	items[0]="<span style='font-family:arial;font-size:9pt;color:#000000;'><b><i>&#34;You have the power to give someone the most precious gift in the world - Life.&#34;</i></b></span><br><span style='font-family:arial;font-size:7pt;color:#000000;'>-- Brochure &#8212; Tennessee Donor Service</span>"; //

	items[1]="<span style='font-family:arial;font-size:9pt;color:#000000;'><b><i>&#34;To the world you may be one person, but to one person you may be the world.&#34;</i></b></span><br><span style='font-family:arial;font-size:7pt;color:#000000;'>-- Anonymous</span>"; //

	items[2]="<span style='font-family:arial;font-size:9pt;color:#000000;'><b><i>&#34;I can do what I want now. I'm back in life, not on the sidelines.&#34;</i></b></span><br><span style='font-family:arial;font-size:7pt;color:#000000;'>-- Christine, kidney recipient</span>";

	items[3]="<span style='font-family:arial;font-size:9pt;color:#000000;'><b><i>&#34;I got my life back. I'm a father and a husband again.&#34;</i></b></span><br><span style='font-family:arial;font-size:7pt;color:#000000;'>-- Derrick, kidney recipient</span>";

	items[4]="<span style='font-family:arial;font-size:9pt;color:#000000;'><b><i>&#34;I'm a normal teenager again. Nobody would even know I had a bone transplant if I didn't show them the scar.&#34;</i></b></span><br><span style='font-family:arial;font-size:7pt;color:#000000;'>-- Tyler, bone recipient</span>";

	items[5]="<span style='font-family:arial;font-size:9pt;color:#000000;'><b><i>&#34;We do need to educate the community, tell the people who will be potential donors what donation really is and what it means, and not just say, 'Donate because it's a good thing to do.'&#34;</i></b></span><br><span style='font-family:arial;font-size:7pt;color:#000000;'>-- Mark Gravel, R.N.</span>";

function rotater() {
	if(document.layers) {
		document.placeholderlayer.document.write(items[current]);
		document.placeholderlayer.document.close();
	}
	
	if(ns6)document.getElementById("placeholderdiv").innerHTML=items[current]
		 	        
		if(document.all)
			placeholderdiv.innerHTML=items[current];

			current = (current==items.length-1) ? 0 : current + 1; //increment or reset
			setTimeout("rotater()",howOften*1000);
		}
window.onload=rotater;
// >



