// JavaScript Document

<!-- Initialize the list for the rotating IMAGES -->
var list_graphics = new Array(
							  <!-- Put in the data to randomly sort through -->
							  "g/common/left_picture2.jpg",
							  "g/common/left_picture7.jpg",
							  "g/common/left_picture8.jpg",
							  "g/common/left_picture11.jpg",
							  "g/common/left_picture15.jpg",
							  "g/common/left_picture18.jpg",
							  "g/common/left_picture19.jpg",
							  "g/common/left_picture20.jpg",
							  "g/common/left_picture21.jpg",
							  "g/common/left_picture22.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 -->
							"Care for Your Active Lifestyle is Our Top Priority",
							"Get back in the game... with Pinnacle Rehabilition",
							"Rehab for Knee Surgery is One of Our Specialities",
							"Caring Customer Service Puts You First",
							"Specialized Rehabilition to Fit Your Schedule and Needs",
							"Pinnacle is located at 1818 E. 23rd Ave."
						  );

<!-- 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 -->
						  	true,
							true,
							true,
							true,
							true,
							true
						  );

<!-- 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";
