<!--

function random_image() {
	
	// DO NOT EDIT THIS, LOOK BELOW 
	var image = new Array();
	var image_caption = new Array ();
	var image_credit = new Array ();
	// END 
	
	
	
	// EDIT HERE
	// EDIT HERE
	// EDIT HERE
	
	/*
	
		Instructions:
		
		The number in the brackets indiciates the file name of image without the .jpg.  
		For a new image in the rotation you must add both a
			image_caption[nextnumber]
			image_copyright[newnumber]
		At the end of each respective list below.
		
		If an image has no copyright you must still make the variable, just set it blank like this: = ""
		
		If you encounter difficulty, the default list for these variables is located at the bottom of this page.
		
		WARNING:		
		Do not use a number out of order.  Do not skip numbers.
	
	*/
	
	/* Image Captions */
	image_caption[0] = "California Federal tower on Wilshire Blvd., Miracle Mile";
	image_caption[1] = "MTA Bus on Wilshire Blvd., Miracle Mile";
	image_caption[2] = "Looking West on Wilshire Blvd., Miracle Mile";
	image_caption[3] = "Craft & Folk Art Museum, Miracle Mile";
	image_caption[4] = "Craft & Folk Art Museum, Miracle Mile";	
	image_caption[5] = "Office tower along Wilshire Blvd., Miracle Mile";	
	image_caption[6] = "Western entrance to Miracle Mile";	
	image_caption[7] = "Alandale Avenue, looking north, Miracle Mile";	
	image_caption[8] = "Spaulding Avenue, looking south, Miracle Mile";	
	image_caption[9] = "Tree-shaded Spaulding Avenue, Miracle Mile";	
	image_caption[10] = "Courtyard offices, at 8th and Curson, Miracle Mile";	
	image_caption[11] = "Alandale Avenue, looking north, Miracle Mile";	
	image_caption[12] = "Curson Avenue, looking North, Miracle Mile";	
	image_caption[13] = "Alandale Avenue, looking North at Park LaBrea and Hollywood Hills";	
	image_caption[14] = "Westside Jewish Community Center on Olympic Blvd., Miracle Mile";	
	image_caption[15] = "Olympia Medical Center on Olympic Blvd., Miracle Mile";	
	image_caption[16] = "Masselin Avenue, looking North, Miracle Mile";	
	image_caption[17] = "Edgewood Place, Miracle Mile";	
	image_caption[18] = "A house for sale along Edgewood Place, Miracle Mile";	
	image_caption[19] = "A house being renovated along Edgewood Place, Miracle Mile";	
	image_caption[20] = "Eastern Entrance to Miracle Mile";	
	image_caption[21] = "Eastern Entrance to Miracle Mile";	
	image_caption[22] = "Courtyard Office Tower, Miracle Mile";	
	image_caption[23] = "Corner park next to Courtyard office towers, Miracle Mile";	
	image_caption[24] = "Corner park next to Courtyard office towers, Miracle Mile";
    image_caption[25] = "Entrace to Courtyard Office Towers, Miracle Mile";
	image_caption[26] = "An MTA bus travels along Wilshire Blvd., Miracle Mile";	


	image_credit[0] = "C. Steins 2007";
	image_credit[1] = "C. Steins 2007";
	image_credit[2] = "C. Steins 2007";
	image_credit[3] = "C. Steins 2007";
	image_credit[4] = "C. Steins 2007";	
	image_credit[5] = "C. Steins 2007";	
	image_credit[6] = "C. Steins 2007";	
	image_credit[7] = "C. Steins 2007";	
	image_credit[8] = "C. Steins 2007";	
	image_credit[9] = "C. Steins 2007";	
	image_credit[10] = "C. Steins 2007";	
	image_credit[11] = "C. Steins 2007";	
	image_credit[12] = "C. Steins 2007";	
	image_credit[13] = "C. Steins 2007";	
	image_credit[14] = "C. Steins 2007";
	image_credit[15] = "C. Steins 2007";	
	image_credit[16] = "C. Steins 2007";	
	image_credit[17] = "C. Steins 2007";	
	image_credit[18] = "C. Steins 2007";	
	image_credit[19] = "C. Steins 2007";	
	image_credit[20] = "C. Steins 2007";	
	image_credit[21] = "C. Steins 2007";	
	image_credit[22] = "C. Steins 2007";	
	image_credit[23] = "C. Steins 2007";
	image_credit[24] = "C. Steins 2007";
    image_credit[25] = "C. Steins 2007";
	image_credit[26] = "C. Steins 2007";	

	
	// DO NOT EDIT BELOW THIS LINE
	// DO NOT EDIT BELOW THIS LINE
	// DO NOT EDIT BELOW THIS LINE

	for(i=0;i<26;i++) {
		image[i]=i;
	}
	var number = Math.floor(Math.random()*image.length);
	
	document.write("<img src='/files/random/cs" + image[number] + ".jpg'" + " alt='" + image_caption[number] + "' width='200px' height=150px'><br /><span style='color: rgb(153, 153, 153);'>"+ image_caption[number]+ " <em>(Photo: "+image_credit[number]+")</em></span>");
}