// JavaScript Document

<!-- Initialize the list for the rotating IMAGES -->
var list_graphics = new Array(
							  <!-- Put in the data to randomly sort through -->
							  "g/header_facilities_rotation_1.jpg",
							  "g/header_facilities_rotation_2.jpg",
							  "g/header_facilities_rotation_3.jpg",
							  "g/header_facilities_rotation_4.jpg",
							  "g/header_facilities_rotation_5.jpg",
							  "g/header_facilities_rotation_6.jpg",
							  "g/header_facilities_rotation_7.jpg",
							  "g/header_facilities_rotation_8.jpg"
							  );

<!-- This is the ID of the <img> that will be replaced... (the variable name should be "list_graphic_dest")
list_graphic_dest = "rotation_graphic";

<!-- Initialize the list for the rotating TEXT -->
var list_text = new Array(
						  <!-- Put in the data to randomly sort through -->
						  	"Quotation1",
							"Quotation2",
							"Quotation3",
							"Quotation4",
							"As many quotations as you want!"
						  );

<!-- This arrays values determine whether the picture and text for that value are linked together. -->
var list_linked = new Array(
						  <!-- Put in the data to check for LINKING -->
						  	false,
							false,
							false,
							false,
							false
						  );

<!-- This is the ID of the <div> that will have its inside HTML changed to whatever is in the above list called "list_text"
//The below variable name should be "list_text_dest"
list_text_dest = "none";
