//Testimonials and Tips rotation file.

var _rot_img = new Array();
var _rot_content = new Array();

_rot_img[0] = "/images/DANROCHELLE.gif";
_rot_content[0] = "Rochelle is in her mid 40’s and her husband, Dan is in his mid 30’s.They live with their two children... ";
_rot_img[1] = "/images/greg.gif";
_rot_content[1] = "Greg lives in Vancouver and is 25 years old. He hadn't been able to make payments on his student loan for quite some time...";
_rot_img[2] = "/images/ellen.gif";
_rot_content[2] = "Ellen was struggling to find a solution to her money trouble as she had over-extended herself financially...";
_rot_img[3] = "/images/PHYLLIS65.png";
_rot_content[3] = "Phyllis is 65 years old, works full-time and lives in the Vancouver area with her husband, Joe.  Over the years, Phyllis enjoyed...";



function RandomTest()
{	
	_today = new Date();
	_second = _today.getSeconds();
	_whichone = _second % _rot_content.length;
	
	//update the side button with the random Testimonial
	oImg = document.getElementById("test_img");
	oContent = document.getElementById("test_content");
	
	oImg.src = _rot_img[_whichone];
	oContent.innerHTML = '<span class="bodysidewhite">' + _rot_content[_whichone] + '</spawn>' + '<p><a class="linksside" href="testimonials.shtml">Read more...</a></p>';;

	
//	alert( "Length = " + _rot_content.length + "<BR> Random Number: " + _whichone + "<BR>" );
}