function doQuote()
{
	var src;
	var height;
	var now = new Date() 
	var sec = now.getSeconds() 
	var how_many_options = 6; 
	var text = sec % how_many_options; 
	text +=1; 

	if (text==1) {  
	src = 'images/testimonial_samples.gif';
	height='158';
	} 

	if (text==2) { 
	src = 'images/testimonial_cpi.gif';
	height='221';
	} 

	if (text==3) { 
	src = 'images/testimonial_julie.gif';
	height='174';
	}

	if (text==4) { 
	src = 'images/testimonial_playersarc.gif';
	height='140';
	}

	if (text==5) { 
	src = 'images/testimonial_cigarlot.gif';
	height='174';
	}

	if (text==6) { 
	src = 'images/testimonial_think.gif';
	height='155';
	}

	document.all.imageQuote.innerHTML = "<img src=" + src + " id=imageId width=136 height=" + height + ">";
}
