// JavaScript Document

<!-- Initialize the list for the rotating IMAGES -->
var list_graphics = new Array(
							  <!-- Put in the data to randomly sort through -->
							  "g/r/left_picture1.jpg",
							  "g/r/left_picture2.jpg",
							  "g/r/left_picture3.jpg",
							  "g/r/left_picture4.jpg",
							  "g/r/left_picture5.jpg",
							  "g/r/left_picture7.jpg",
							  "g/r/left_picture8.jpg",
							  "g/r/left_picture9.jpg",
							  "g/r/left_picture10.jpg",
							  "g/r/left_picture11.jpg",
							  "g/r/left_picture12.jpg",
							  "g/r/left_picture13.jpg",
							  "g/r/left_picture14.jpg",
							  "g/r/left_picture15.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 -->
						  	"Pinnacle offers state of the art equipment to its patients",
							"We treat a wide variety of on the job injuries",
							"Our patient and caring staff is ready to serve"
						  );

<!-- 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
						  );

<!-- 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 = "div_rotation_text";
