<!--
// Create arrays to contain all the values
// for links and image locations
link = new Array
image = new Array

link[1]="http://www.rockler.com/product.cfm?page=1322&sid=AF547"
image[1]="http://www.refinishfurniture.com/feature-kitchen-js/custom-drawers-js-txt.jpg"

link[2]="http://www.rockler.com/product.cfm?page=1435&sid=AF547"
image[2]="http://www.refinishfurniture.com/feature-kitchen-js/tack-cloth-js-txt.gif"

link[3]="http://www.rockler.com/CategoryView.cfm?Cat_ID=67&sid=AF547"
image[3]="http://www.refinishfurniture.com/feature-kitchen-js/pantry-pullouts-js-txt.jpg"

link[4]="http://www.rockler.com/product.cfm?page=2327&sid=AF547"
image[4]="http://www.refinishfurniture.com/feature-furniture-js/suspension-drawer-slide-js-txt.jpg"


// Create a random number between 1 and four
random_num = (Math.round((Math.random()*3)+1))


// Write a link and images with random array
document.write("<a href=\"" + link[random_num] + "\" target=\"_blank\">");
document.write("<align=\"center\">"+"<img src=\"" + image[random_num] + "\" border=\"0\"></a>");

-->