//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=4

var company=new Array(totaltestimonials)
var testimonial=new Array(totaltestimonials)
var customer=new Array(totaltestimonials)
var title=new Array(totaltestimonials)

testimonial[0]="I am 100% happy with the custom treeview. I've been working on a fairly complex system, working on the treeview alone for about one and a half months. The support team are an extremely helpful, they are always happy to help and they have exellent programming skills. Looking foward to seeing the end result of this project I'm working on. I couldn't have done it without this product."
customer[0]="David Graham"
title[0]="Analyst Developer"
company[0]="NHS Grampian"

testimonial[1]="Your IntegralUI TreeView is great. It is easy to use and most importantly highly customisable. I was able to integrate the tree view into my application smoothly in less than 30 minutes the first time I used it. When I had questions about further technical detals the support team was very friendly and replied my e-mails very fast."
customer[1]="Kelvin"
title[1]=""
company[1]=""

testimonial[2]="We are extremely happy with our purchase of the IntegralUI TreeView...We purchased the IntegralUI TreeView for one specific project and ended up replacing all of the Microsoft TreeView controls in all of our projects...I am completely blown away by the support. The support team delivered exactly what they told me. Every time I contact support they go way beyond what I am used to. We use several 3rd party controls and Lidor Systems has provided the best support by far."
customer[2]="Michael Gustafson"
title[2]=""
company[2]="DP Technology Corp."

testimonial[3]="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[3]="Tod Golding"
title[3]=""
company[3]=""

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)
}