function cycleItems(displayItem)
{
	if(displayItem == 1)
	{
		rotate.innerHTML = "<font face=arial size=2><i>\"The day I have to put anything less than Most Satisfied on my annual survey is the day we all must worry.  The Baker Hill Team is tops in my book.  Thank you!\"</i></font>";
		displayItem = 2;
	}
	else if(displayItem == 2)
	{
		rotate.innerHTML = "<font face=arial size=2><i>\"I am always impressed at how well my questions and problems are handled.  Our administrator quit and left without anyone here to go to for problems.  Baker Hill support is always patient and understanding of my lack of experience with the mechanics of the system.\"</i></font>";
		displayItem = 3;
	}
	else if(displayItem == 3)
	{
		rotate.innerHTML = "<font face=arial size=2><i>\"Once again, it was a pleasure dealing with this support technician. Its so refreshing dealing with someone who obviously enjoys what they are doing and someone who knows what they are doing too! Nothings worse than trying to get help from someone who sounds like theyre about to leap from a window. That is not the case with Baker Hill support technicians.\"</i></font>";
		displayItem = 4;
	}
	else if(displayItem == 4)
	{
		rotate.innerHTML = "<font face=arial size=2><i>\"It continues to be a pleasure working with Baker Hill.  Thanks for consistently delivering top notch products and client support services!\"</i></font>";
		displayItem = 0;
	}
	else
	{
		rotate.innerHTML = "<font face=arial size=2><i>\"She really exceeded all of our expectations as to what we could expect out of Baker Hill, or for that matter any technical support person anywhere.  If the rest of your support team is as helpful, knowledgeable, and courteous as she has been, this should be one of our easiest applications to support.  While I hope I never need to use Baker Hill support in the future for a problem, I will always look forward to any future dealings with her and her associates if the need arises.\"</i></font>";
		displayItem = 1;
	}
	

    setTimeout("cycleItems(" + displayItem + ")", 7000);
}