//Random link plus text description script
//By Michael Dillon (http://www.mikenz.com)
//Script featured on JavaScript Kit (http://javascriptkit.com)

//specify total # of random links
function randomtext() {
var totaltestimonials=1

var location=new Array(totaltestimonials)
var testimonial=new Array(totaltestimonials)
var customer=new Array(totaltestimonials)
var title=new Array(totaltestimonials)

testimonial[0]="I had a really great surprise today.  My valance was delivered and it looks very, very nice.  The color is perfect and it is very well made.  I know I must sound surprised but I never ordered from Dante Hill before and did not know what to expect.  I have had a few bad experiences with a web site.  I will not mention, their name. They make it very difficult to deal with.  Dante Hill delivered, thank you so much."
customer[0]="Laura Altemus"
title[0]=""
location[0]="Saddle Brook, NJ"

var feedback=Math.floor(Math.random()*totaltestimonials)
var cont="&quot; "+testimonial[feedback]+" &quot;"
cont+="<p>"+customer[feedback]+"<br>"+location[feedback]+"</p>"
document.write(cont)
}