// Contains Menu Animation functionality for top menu

			// Pre-load images

            // REMEMBER TO ALSO UPDATE INDEX IMAGE REFERENCE WHEN CHANGING NUMBER BELOW
				var menu56on = new Image();
				menu56on.src = "images/gallery/bab_in.jpg";
				var menu56off = new Image();
				menu56off.src = "images/gallery/bab_out.jpg";
				
				var menu61on = new Image();
				menu61on.src = "images/gallery/keener_in.jpg";
				var menu61off = new Image();
		    	menu61off.src = "images/gallery/keener_out.jpg";
				
				var menu62on = new Image();
				menu62on.src = "images/gallery/church_in.jpg";
				var menu62off = new Image();
				menu62off.src = "images/gallery/church_out.jpg";

				var menu67on = new Image();
				menu67on.src = "images/gallery/adelle_in.jpg";
				var menu67off = new Image();
				menu67off.src = "images/gallery/adelle_out.jpg";

				var menu72on = new Image();
				menu72on.src = "images/gallery/mctyere_in.jpg";
				var menu72off = new Image();
				menu72off.src = "images/gallery/mctyere_out.jpg";

				var menu77on = new Image();
				menu77on.src = "images/gallery/millsaps_in.jpg";
				var menu77off = new Image();
				menu77off.src = "images/gallery/millsaps_out.jpg";

				var menu82on = new Image();
				menu82on.src = "images/gallery/sidway_in.jpg";
				var menu82off = new Image();
				menu82off.src = "images/gallery/sidway_out.jpg";

				var menu87on = new Image();
				menu87on.src = "images/gallery/lamar_in.jpg";
				var menu87off = new Image();
				menu87off.src = "images/gallery/lamar_out.jpg";			
							
				var menu92on = new Image();
				menu92on.src = "images/gallery/minerva_in.jpg";
				var menu92off = new Image();
				menu92off.src = "images/gallery/minerva_out.jpg";	
							
				var menu97on = new Image();
				menu97on.src = "images/gallery/livingston_in.jpg";
				var menu97off = new Image();
				menu97off.src = "images/gallery/livingston_out.jpg";	
								
				var menu102on = new Image();
				menu102on.src = "images/gallery/fairbanks_in.jpg";
				var menu102off = new Image();
				menu102off.src = "images/gallery/fairbanks_out.jpg";	
			
				var menu107on = new Image();
				menu107on.src = "images/gallery/wightman_in.jpg";
				var menu107off = new Image();
				menu107off.src = "images/gallery/wightman_out.jpg";	
																													
			function on(index)
			{
			   // alert(index);	- use to check index of image for correct image swaps
			    document.images[index].src = eval("menu" + index + "on.src");


			}
			
			function off(index)
			{					

					document.images[index].src = eval("menu" + index + "off.src");
			}

