// JavaScript Document
function showquote() {
	var quotes = new Array();
	quotes[0] = "Once set up it runs smoothly and trouble free."
	quotes[1] = "It has tons of features, flexibility, it's easy to customize, and has an active knowledgebase."
	quotes[2] = "It's easy to use - easy to customize - easy to afford."
	quotes[3] = "VPASP is by far the best value, most comprehensive shopping cart around with the best support."
	quotes[4] = "There is no better cart out there period!"
	quotes[5] = "I looked at all kinds of carts and this one is the only one that me as an amateur could modify into what I needed it to be."
	quotes[6] = "Its one complete solution."
	quotes[7] = "There is hardly a situation I come up against that VP-ASP can't do."
	quotes[8] = "Thanks to your software we have just processed our 100,000th customer order!"
	quotes[9] = "VP-ASP has allowed me to go from $0 to over a $1 million in sales per year. It handles it all!"
	
	var quotessource = new Array();
	quotessource[0] = "Customer Feedback Survey"
	quotessource[1] = "Customer Feedback Survey"
	quotessource[2] = "Customer Feedback Survey"
	quotessource[3] = "Customer Feedback Survey"
	quotessource[4] = "Customer Feedback Survey"
	quotessource[5] = "Customer Feedback Survey"
	quotessource[6] = "Customer Feedback Survey"
	quotessource[7] = "Customer Feedback Survey"
	quotessource[8] = "Alan MacLachalan"
	quotessource[9] = "Alan MacLachalan"
	
	var randomnumber=Math.floor(Math.random()*quotes.length)
	document.getElementById("quote").innerHTML = "<blockquote>&ldquo; " + quotes[randomnumber] + " &rdquo;</blockquote><div align='center'><small><em>" + quotessource[randomnumber] + "</em></small></div>"
}
