
	//quote array
	quoteList = new Array();
	
	quoteList[0] = "\"We can instantly access all information from one screen to answer customer questions on products, scheduling, service history, etc...\"";
	quoteList[1] = "\"Scheduling a service call with a customer takes less than a minute!\"";
	quoteList[2] = "\"Easy and quick to go between sales and delivery orders. Increases speed and capability to support customers\"";
	quoteList[3] = "\"Required product parts are pulled and/or ordered automatically\"";
quoteList[4] = "\"We're able to confidently schedule, commit to and deliver service on time.\"";
quoteList[5] = "\"When a customer calls, products they own are pre-loaded and available in point-and-click drop down screens.  No retyping or reentering.\"";
quoteList[6] = "\"Simple to locate and print out rebates for customers.\"";
quoteList[7] = "\"We can access inventory at multiple warehouses/locations\"";
quoteList[8] = "\"Quick and easy to change delivery dates, address, customer data, etc. System updates everything related to these changes automatically – no double keying information.\"";
quoteList[9] = "\"We can reserve products for delivery to avoid duplicate product orders.\"";
quoteList[10] = "\"Powerful daily sales reports.  All credit cards, cash, checks, used automatically sum in 2 minutes.\"";
quoteList[11] = "\"Easy to find mistakes when things don’t balance. Enter customer number, edit field – done.\"";
quoteList[12] = "\"Very efficient layout. Updating any/all information is quick and easy.\"";
quoteList[13] = "\"Billing errors have been cut by 75%\"";
quoteList[14] = "\"Billing process streamlined. Now takes 2 days instead of 5 days\"";
quoteList[15] = "\"Auto completion of extended warranty form.\"";
quoteList[16] = "\"Check box for options – makes identification and selection easy.  Reduces errors and forgetting things\"";
quoteList[17] = "\"Historical look up of items for years into the past.  We can look up an order and duplicate it (i.e. for a builder constructing another house).\"";
quoteList[18] = "\"Less time doing computer and clerical work. More time selling. That's important when focused selling to builders vs. in retail store.\"";
quoteList[19] = "\"Quote-to-sale process. No duplicate keying of data. One click/convert to sale and go.\"";
quoteList[20] = "\"Simplified purchase ordering.  No manual entry. Pull up items electronically and automatically add them to an “Items Needed” list if they're scheduled for pick up or delivery\"";
quoteList[21] = "\"Find and print up-to-the-minute sales compensation/SPIFF reports easily\"";
quoteList[22] = "\"Remote access to the system is quick and easy. I was able to quickly resolve an issue with a customer order while out of the office.\"";
quoteList[23] = "\"Log record of who touched the order last\"";
quoteList[24] = "\"Automatic generation of technician routing maps via Google Maps\"";
quoteList[25] = "\"Accounting data transfer to PeachTree.  Automated function reduced work (and people) by 25%.\"";
quoteList[26] = "\"Saves me at least 50% of the time\"";
quoteList[27] = "\"Receiving a load is much faster.  Delivery labels are printed upon receipt of each item – ready to deliver\"";
quoteList[28] = "\"This system enables more work with the same people. We can schedule more deliveries by spending less time on the computer\"";
quoteList[29] = "\"The system reduced returning inventory 400% (20-to-5 or less items) per month\"";
quoteList[30] = "\"I can rest assured that all parts have been ordered at the end of the day, no hidden surprises.\"";
quoteList[31] = "\"Your software was the missing link!\"";
quoteList[32] = "\"I can easily monitor how much they are spending and what is being ordered, by who.\"";
	




//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];
	
