//Multidemensional array for image values
//sub array attributes: imageName, title , width, height, url
multiArray = new Array(
	title1 = new Array('FrontPageImage01.jpg','Make your transportation reservations now!','633','228'),
	title2 = new Array('FrontPageImage02.jpg','Make your transportation reservations now!','633','228'),
	title3 = new Array('FrontPageImage03.jpg','Make your transportation reservations now!','633','228')
);

//randomly pick image
var theChosenOne = multiArray[Math.floor(Math.random()*multiArray.length)];

//variables for setting, testing and a clearer meaning
var imageName = theChosenOne[0];
var title = theChosenOne[1];
var width = theChosenOne[2];
var height = theChosenOne[3];

document.write('<img src="images/titles/' + imageName +'" width="' + 
width + '" height="' + height + '" alt="' + title + '" title="' + title + 
'" border="0"></a>');