// JavaScript Document

<!--

//store the quotations in arrays

images = new Array(2);

images[0] = "<a href = 'http://www.powerglide-cues.com/pool-cues/default.asp'><img src='/images/random-bottom/one.jpg' alt='View Pool Cues' border = '0'></a>";

images[1] = "<a href = 'http://www.powerglide-cues.com/the-simpsons/default.asp'><img src='/images/random-bottom/two.jpg' alt='View Simpsons Range' border = '0'></a>";


index = Math.floor(Math.random() * images.length);

document.write(images[index]);

//done

// -->