//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 company=new Array(totaltestimonials)
var testimonial=new Array(totaltestimonials)
var customer=new Array(totaltestimonials)
var title=new Array(totaltestimonials)

testimonial[0]="Lidor Systems makes working with third-party components a pleasure. Their products offered me the combination of functionality and lightweight footprint that was perfect for my application. Better yet, they provide a level of depth and responsiveness in their support that is unmatched."
customer[0]="Tod Golding"
title[0]=""
company[0]=""

var feedback=Math.floor(Math.random()*totaltestimonials)
var cont="<p style='margin:0'>&quot; "+testimonial[feedback]+" &quot;</p>"
cont+="<p style='margin-top:5px; margin-bottom: 5px'><b>"+customer[feedback]+"</b><br>"+title[feedback]+"<br>"+company[feedback]+"</p>"
document.write(cont)
}