	//quote array
	quoteList = new Array();
	
quoteList[0] = '...Smooth Groove Band was able to accommodate a last minute gig for a wedding 2 days out.<DIV STYLE="padding-left: 20pt">--Wendy Wojcik, Weddings With Wendy</DIV>';
quoteList[1] = 'It was so nice not to have to worry about a thing. Thank you for your fantastic work!  <DIV STYLE="padding-left: 20pt"> --Jenny and Voja, newly weds </DIV>';
quoteList[2] = ' You & your colleagues were simply amazing. You gave us exactly what we wanted.  <DIV STYLE="padding-left: 20pt"> --Heather Hughes, bride</DIV>';
quoteList[3] = ' I&#39;m convinced I had the best jazz band in Seattle at the wedding.  <DIV STYLE="padding-left: 20pt"> --Heather Hughes, bride</DIV>';
quoteList[4] = ' ...Thank you for Smooth Groove&#39;s part in making the opening party for our Bellevue Square store such a success.  <DIV STYLE="padding-left: 20pt"> --Bette Kahn, Crate and Barrel</DIV>';
quoteList[5] = ' Chris and I thought Smooth Groove was fabulous.  <DIV STYLE="padding-left: 20pt"> --Cecilia Nguyen-Sorci, bride</DIV>';
quoteList[6] = ' ....Such a successful party. We want to thank you again for being a part of it.  <DIV STYLE="padding-left: 20pt"> --Krissy Hansen, Williams Marketing</DIV>';
quoteList[7] = ' The event would not have been the success it was without Smooth Groove Productions  <DIV STYLE="padding-left: 20pt"> --Michael Eklund-Grayum, campaign manager</DIV>';
quoteList[8] = ' You made the event go off without a hitch! I can&#39;t wait to work with you again!  <DIV STYLE="padding-left: 20pt"><EM> --Tamarra Henley, Family Fun Center</EM></DIV>';
quoteList[9] = ' Thank you for all your help!  <DIV STYLE="padding-left: 20pt"> --The Art Institute of Seattle</DIV>';
quoteList[10] = ' Overall, great job!  <DIV> <EM>--Randy Hayden</EM> </DIV>';
quoteList[11] = ' You were perfect!  <DIV STYLE="padding-left: 20pt"> --Michelle Huber</DIV>';
quoteList[12] = ' Jeni and I want to thank you sincerely for helping to make our wedding great.  <DIV STYLE="padding-left: 20pt"> --Jeni and Brad Beck</DIV>';
quoteList[13] = ' I wanted to take this opportunity to thank you and your group for a superb performance at our Holiday party.  <DIV STYLE="padding-left: 20pt"> --Yvonne L. Westover, Community Health Centers </DIV>';
quoteList[14] = ' Your music , as always, provided the perfect touch to complete the mood of the evening.  <DIV STYLE="padding-left: 20pt"> --PJ Hummel and Company</DIV>';
quoteList[15] = ' Your music was wonderful!  <DIV STYLE="padding-left: 20pt"> --Jeanne Beck-Lanning, Washington Athletic Club</DIV>';
	
	
	
	//randomization
	var now = new Date();
	var secs = now.getSeconds();
	var raw_random_number = Math.random(secs);
	var random_number = Math.round(raw_random_number * (quoteList.length));

	if (random_number == quoteList.length){random_number = 0}
	
	
	//set quote
	var quote = quoteList[random_number];

<!-- Idea by:  Nic Wolfe (Nic@TimelapseProductions.com) -->
<!-- Web URL:  http://fineline.xs.mw -->

<!-- This script and many more are available free online at -->
<!-- The JavaScript Source!! http://javascript.internet.com -->

<!-- Begin
function popUp(URL) {
day = new Date();
id = day.getTime();
eval("page" + id + " = window.open(URL, '" + id + "', 'toolbar=0,scrollbars=1,location=0,statusbar=0,menubar=0,resizable=1,width=480,height=490,left = 292,top = 154');");
}