// JavaScript Document

//random image 
function randomImage(){
	
ranImage = new Array();

ranImage[0] = "<img src=\"img/back_truck.jpg\" width=\"200\" height=\"200\" alt=\"back of a rite price removal truck.\" />";
ranImage[1] = "<img src=\"img/couch_stairs.jpg\" width=\"200\" height=\"200\"  alt=\"Staff moving a client couch down a flight of stairs\" />";
ranImage[2] = "<img src=\"img/tall_boy.jpg\" width=\"200\" height=\"200\"  alt=\"Staff memebr smilling while leaning on a wrapped tall-boy.\" />";
ranImage[3] = "<img src=\"img/mat_pack.jpg\" width=\"200\" height=\"200\"  alt=\"Shot of a securely load rite proce removal truck.\" />";
ranImage[4] = "<img src=\"img/wrapping_mirror.jpg\" width=\"200\" height=\"200\"  alt=\"Staff carefully bubble wrapping a mirror.\" />";
ranImage[5] = "<img src=\"img/chair.jpg\" width=\"200\" height=\"200\"  alt=\"Picture of a chair that has been wrapped in protective carboard\" />";
ranImage[6] = "<img src=\"img/plants.jpg\" width=\"200\" height=\"200\"  alt=\"Even plants can be moved. Plants on the removal truck.\" />";
ranImage[7] = "<img src=\"img/stacking_truck.jpg\" width=\"200\" height=\"200\"  alt=\"Packing the truck secuerly.\" />";
ranImage[8] = "<img src=\"img/small_box.jpg\" width=\"200\" height=\"200\"  alt=\"Not item to small as staff pack a small box in truck.\" />";
ranImage[9] = "<img src=\"img/truck_side.jpg\" width=\"200\" height=\"200\"  alt=\"Picture showing the side of one of the many Rite Price fleet trucks.\" />";
ranImage[10] = "<img src=\"img/staff_car.jpg\" width=\"200\" height=\"200\"  alt=\"Staff member smilling as they lean up against a car.\" />";

number = Math.floor(Math.random() * ranImage.length);

document.write(ranImage[number]);

}