// JavaScript Document

Event.observe(window, "load", function() {
			var images = [
				"images/slide01.jpg",
				"images/slide02.jpg",
				"images/slide03.jpg",
				"images/slide04.jpg",
				"images/slide05.jpg",
				"images/slide06.jpg",
				"images/slide07.jpg",
				"images/slide08.jpg"
			];
			$("slideshow").up().title = $("slideshow").alt;
			new Blender("slideshow", images, {
				fadeDuration: 3,
				displayDuration: 3,
				attributes: { "border": "0" }
			});
		});
