var photos2 = new Array() // do not change this
photos2[0] = 'images/moveTip1.gif'
photos2[1] = 'images/moveTip2.gif'
photos2[2] = 'images/moveTip3.gif'
photos2[3] = 'images/moveTip4.gif'
photos2[4] = 'images/moveTip5.gif'
photos2[5] = 'images/moveTip6.gif'

var j = 0
var p = photos2.length;
var preBuffer = new Array()
for (i = 0; i < p; i++) {
   preBuffer[i] = new Image()
   preBuffer[i].src = photos2[i]
}
var whichImage = Math.round(Math.random()*(p-1));
var theImage = photos2[whichImage];

document.write('<img src="'+theImage+'" border="0" width="240" height="100" alt="Professional Moving Tips">');
