<!--
// 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=6490&sid=AF547"
image[1]="http://www.refinishfurniture.com/feature-kitchen-js/citristrip-js-txt.gif"

link[2]="http://www.rockler.com/product.cfm?page=10827&sid=AF547"
image[2]="http://www.refinishfurniture.com/feature-kitchen-js/decorative-wire-grille-js-txt.jpg"

link[3]="http://www.rockler.com/product.cfm?page=2213&sid=AF547"
image[3]="http://www.refinishfurniture.com/feature-kitchen-js/pressure-sensitive-veneer-js-txt.jpg"

link[4]="http://www.rockler.com/product.cfm?page=6354&sid=AF547"
image[4]="http://www.refinishfurniture.com/feature-kitchen-js/furniture-cleaner-js-txt.gif"


// 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>");

-->
