var lquo = '<span class="huger">&ldquo;</span> ';
var rquo = '&nbsp;<span class="huger">&rdquo;</span>';
var quoteArray = new Array();

quoteArray[0] = lquo + "I was very confident in your ability from our first meeting. The final product was even better than I expected." + rquo + "<br />&#151; Eric";
quoteArray[1] = lquo + "... our guests still remark about your exceptional professionalism, charm and skill." + rquo + "<br />&#151; Tony &amp; Stacey";
quoteArray[2] = lquo + "We totally love our photos." + rquo + "<br />&#151; Robert &amp; Yvette";
quoteArray[3] = lquo + "Thank you so much for the exquisite and very meaningful photographs ... I can also tell by the photos how well the guests responded to you." + rquo + "<br />&#151; Phil &amp; Sharon";
quoteArray[4] = lquo + "... we were glad to find someone like you who could accomodate our budget, but still provide top notch photography." + rquo + "<br />&#151; Chris &amp; Yuka";
quoteArray[5] = lquo + "We love our pictures! We are very satisfied with your professionalism and ability to capture in picture the fun, joy, &amp; love in everyone's faces." + rquo + "<br />&#151; Mose &amp; Jasmin";

function randNum (num) {
	var now = new Date();
	var rand = Math.round(num * Math.cos(now.getTime()));
	if (rand < 0) rand = - rand; 
	if(rand >= quoteArray.length) rand-- ;
	return rand;
}
