var origWidth, origHeight;

if (document.layers) {
  origWidth = window.innerWidth;
  origHeight = window.innerHeight;
  onresize = function() { if(innerWidth != origWidth || innerHeight != origHeight) location.reload(); }
}

else if (document.all) onresize = function() { window.location.reload(); }

	var quotes = 3;     // Number of alternative images
	var pick = new Array(quotes);  // Array to hold filenames
        
	pick[0] = "/stopyourcommute/images/testimonials/testimonial_FirstBank_Cadden.jpg";
	pick[1] = "/stopyourcommute/images/testimonials/testimonial_Chickfila_Swope.jpg";
	pick[2] = "/stopyourcommute/images/testimonials/testimonial_SpecialMade_Steele.jpg";

		
	


function pickRandom(range) {
	if (Math.random)
	return Math.round(Math.random() * (range-1));
	else {
		var now = new Date();
		return (now.getTime() / 1000) % range;
	}
}
var choice = pickRandom(quotes);