/******************************************************************************
 * 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(5);
	
	// Specify the image source and hyperlink for each image in the array (note the <\/a>.  That is intentional.
	images[0] = "<a href='AnnualReport.html'><img src='images/A0_link_annual_report.jpg' alt='Visit Annual Report' border='0'><\/a>";
	images[1] = "<a target='_blank' href='PDF/GCCSNewsletterNov08.pdf'><img src='images/A0_link_child_herald.jpg' alt='Visit Children's Herald' border='0'><\/a>";
	images[2] = "<a href='FriendsGive.html'><img src='images/A0_link_friends_give.jpg' alt='Visit Friends Give' border='0'><\/a>";
	images[3] = "<a href='NewsEvents.html'><img src='images/A0_link_news_events.jpg' alt='Visit News and Events' border='0'><\/a>";
	images[4] = "<a target='_blank' href='PDF/GH-Newsletter-Oct08.pdf'><img src='images/A0_link_young_news.jpg' alt='Visit Young News' border='0'><\/a>";
	images[5] = "<a href='NewsEvents.html'><img src='images/A0_link_news_walk.jpg' alt='GCCS Walk to Stop Child Abuse' border='0'><\/a>";
	images[6] = "<a target='_blank' href='PDF/PR-FosterAdoptiveParentInfoSessionJuly09.pdf'><img src='images/A0_Foster_Adoptive_Info_Session.jpg' alt='Foster Adoptive Parent Info Session' 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
}
