// JavaScript Document

		// Set up our options for the slideshow...
			var myOptions = {
				noImages: 8, // Number of images
				path: "images/slideshow/", // Relative path with trailing slash.
				/*-----NULL
				captions: { // HTML can be included in the captions.
					1: 'Caption 1',
					2: 'Caption 2',
					3: 'Caption 3',
					4: 'Caption 4',
					5: 'Caption 5',
				},
				links: { // Should the images link anywhere? if no links are required at all then this option can be omitted.
					1:"http://www.google.com",
					2:"http://www.yahoo.com",
					3:"",
					4:"http://www.jquery.com",
					5:"http://www.youtube.com",
				},
				------*/
				linksOpen:'newWindow', // How to open links? sameWindow or newWindow.
				timerInterval: 4500, // 6500 = 6.5 seconds
				randomise: false // Start with random image? true=yes/false=no
			};
			
			// Initiate the Easy Slides plugin, assigning it to your contaner DIV...
			$('#slideshow').easySlides(myOptions);w
			

