// JavaScript Document
// Selection of images
masterArray = new Array (
	randomImage01 = new Array ('couchguy.gif','Pulse'),
	randomImage02 = new Array ('chairgirl.gif','Pulse'),
	randomImage03 = new Array ('couchgirl.gif','Pulse')
);
// the math for selecting and image from the above Array
var choice = masterArray [Math.floor(Math.random()*masterArray.length)]
// the attributes of the image
var img = choice[0]
var t = choice[1]
// the line of html to be placed into the webpage
document.write('<img src = "http://pulsestyle.com/images/random/' + img + '" title ="' + t + '" border="0" alt="Pulse Furniture">');