/******************************************************************************
 * JAVASCRIPT FOR GREENE COUNTY CHILDREN'S SERVICES WEBSITE
 * Author: Dan Barrett, dbarrett@spiritsgifts.com
 * Copyright 2008 Greene County Children's Services. All Rights Reserved.
 *****************************************************************************/

// ### RANDOM IMAGE ###
// Javascript Created by Computerhope http://www.computerhope.com
// Displays random image with associated hyperlinks at every page refresh

function random_image() {
	// When adding or subtracting new images, increase or decrease the # within Array()
	images = new Array(11);
	
	// Specify the image source and hyperlink for each image in the array (note the <\/a>.  That is intentional.
	images[0] = "<img src='images/Random10.gif' alt='Tips and Quotes' border='0'><\/a>";
	images[1] = "<img src='images/Random1.gif' alt='Tips and Quotes' border='0'><\/a>";
	images[2] = "<img src='images/Random2.gif' alt='Tips and Quotes' border='0'><\/a>";
	images[3] = "<img src='images/Random3.gif' alt='Tips and Quotes' border='0'><\/a>";
	images[4] = "<img src='images/Random4.gif' alt='Tips and Quotes' border='0'><\/a>";
	images[5] = "<img src='images/Random5.gif' alt='Tips and Quotes' border='0'><\/a>";
	images[6] = "<img src='images/Random6.gif' alt='Tips and Quotes' border='0'><\/a>";
	images[7] = "<img src='images/Random7.gif' alt='Tips and Quotes' border='0'><\/a>";
	images[8] = "<img src='images/Random8.gif' alt='Tips and Quotes' border='0'><\/a>";
	images[9] = "<img src='images/Random9.gif' alt='Tips and Quotes' border='0'><\/a>";
	images[11] = "<img src='images/Random11.gif' alt='Tips and Quotes' border='0'><\/a>";
	// Generate the randomized value (zero through ??)
	index = Math.floor(Math.random() * images.length);
	
	// Generate the HTML in this position
	document.write(images[index]);
	// end Random Image Display
}