// JavaScript Document

function changeQuote(){
	
	var thisQuote = new Array (
							   "Excellent quality and super-fast shipper. I would buy from this Seller again",
							   "Excellent product. Finishing and quality is top notch. Great seller.",
							   "Wine bags look great! They're very durable and I love the designs!",
							   "Excellent bags, fast shipping!",
							   "Bags are wonderful! Super fast shipping! Highly recommended, will buy again!",
							   "Great bags!",
							   "The bags are great for gifting wine! Sturdy, bright and fun. Thanks!",
							   "Great service, really fast shipping! Love the wine bags, they are very sturdy!"
							   )
	var thisAuthor = new Array (
							   "jheinold",
							   "drrl",
							   "ym3us",
							   "margariga",
							   "bicho911",
							   "moosieblue",
							   "grayshades",
							   "kyra.zxq"
							   )
	var showThis = document.getElementById("showTest").value;
	
	showThis = eval(showThis) + 1
	
	alert(showThis);
	
	document.getElementById("showTest").value = showThis
	
}

