// list of home page photos		photos = new Array();				var i = 0;				photos[i++] = '<a href="about.html"><img src="_images/home-photo-focus.jpg" alt="Focus" width="587" height="259" border="0"></a>';		photos[i++] = '<a href="about.html"><img src="_images/home-photo-know_the_market.jpg" alt="Know the Market" width="587" height="259" border="0"></a>';		photos[i++] = '<a href="about.html"><img src="_images/home-photo-smaller_is_better.jpg" alt="Smaller is Better" width="587" height="259" border="0"></a>';		photos[i++] = '<a href="about.html"><img src="_images/home-photo-look_deeper.jpg" alt="Look Deeper" width="587" height="259" border="0"></a>';// list of testimonials		quotes = new Array();				var i = 0;				quotes[i++] = '<a href="testimonials.html"><img src="_images/home-testimonial-dial.gif" alt="Dial testimonial" width="253" height="200" border="0"></a>';		quotes[i++] = '<a href="testimonials.html"><img src="_images/home-testimonial-sprint.gif" alt="Sprint testimonial" width="253" height="200" border="0"></a>';		quotes[i++] = '<a href="testimonials.html"><img src="_images/home-testimonial-schwab.gif" alt="Charles Schwab testimonial" width="253" height="200" border="0"></a>';// write the value into the document	function insertRotationItem(cookiename) {			var value=0; // default value to start with is zero		var allCookies=document.cookie; // get the whole cookie for the site		var position=allCookies.indexOf(cookiename); // is our cookie in the site's cookie				if (position!=-1) { // if so, let's find out where it is in the site's cookie			var start=position+cookiename.length+1; // here's where it starts			value=allCookies.substring(start,start+1); // pull out the value we want to display		}				if (value==eval(cookiename + ".length")-1) { // have we reached the end of the array?			var setValue=0; // if so, set it back to zero		} else {			var setValue=parseInt(value)+1; // if not, add one to it		}		document.cookie=cookiename+"="+setValue; // now set the cookie for next time				document.write(eval(cookiename + "[value]"));	}