//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 greeting=new Array(totaltestimonials)

testimonial[0]="Just wanted to tell you that I have received both the Roman shade and the tab top drape I ordered and I am very happy with both of them. I would definitely order from Dante Hill again in the future."
greeting[0]="Thank you!"
customer[0]="Wendy L. Goddard"
location[0]="Goffstown, NH"

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