

//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
var totallinks=3

var urls=new Array(totallinks)
var descriptions=new Array(totallinks)
var titles=new Array(totallinks)

urls[0]="<p align=right><a href=product_blooming.html>more</a></p>"
descriptions[0]="for successful and full blossoms in shaded or partially shaded areas."
titles[0]="<b><a href=product_blooming.html>BLOOMING BAGS</a></b>"

urls[1]="<p align=right><a href=product_gardenwire.html>more</a></p>"
descriptions[1]="Secure your shrubs, plants, flowers, vines and decorations!"
titles[1]="<b><a href=product_gardenwire.html>SOFT TWIST TIE GARDEN WIRE</a></b>"

urls[2]="<p align=right><a href=product_landscapefabric.html>more</a></p>"
descriptions[2]="The professional way to guard against weeds while letting air and water in!"
titles[2]="<b><a href=product_landscapefabric.html>PRO LANDSCAPE FABRIC</a></b>"

var MachoManRandomSavage=Math.floor(Math.random()*totallinks)



var cont=titles[MachoManRandomSavage]+"<br>"+descriptions[MachoManRandomSavage]
cont+="<br><a href='../"+urls[MachoManRandomSavage]+"'>"
cont+=urls[MachoManRandomSavage]+"</a><br>"
document.write(cont)


