/*******************************************************************************

FILE: mud_Scripts.js
REQUIRES: prototype.js, mud_FadeGallery.js
AUTHOR: Takashi Okamoto mud(tm) - http://www.mudcorp.com/
VERSION: 2.0 - converted to use prototype.js
DATE: 01/05/2006

--------------------------------------------------------------------------------

This file is part of MudFadeGallery.

	MudFadeGallery is free for anyone to use, but this header MUST be
	included, and may not be modified.

*******************************************************************************/

////////////////////////////////////////////////////////////////////////////////
// GLOBAL VARS

var imgsGallery = new Array();
var imgs;

///////////////////////////////////////////////////////////////////////////////
// MOUSE EVENTS

function setOnMouseClick() {
	var elements = document.getElementsByTagName("a");
	for (var i = 0; i < elements.length; i++) {
		switch(elements[i].className) {
			case "next":
				elements[i].onclick = function() {
					 imgs.nextImg();
					 return false;
				}
				break;
			case "prev":
				elements[i].onclick = function() {
					 imgs.prevImg();
					 return false;
				}
				break;
			case "s0":
				elements[i].onclick = function() {
					 imgs.showImg(0);
					 return false;
				}
				break;
			case "s1":
				elements[i].onclick = function() {
					 imgs.showImg(1);
					 return false;
				}
				break;
			case "s2":
				elements[i].onclick = function() {
					 imgs.showImg(2);
					 return false;
				}
				break;
			case "s3":
				elements[i].onclick = function() {
					 imgs.showImg(3);
					 return false;
				}
				break;
			case "s4":
				elements[i].onclick = function() {
					 imgs.showImg(4);
					 return false;
				}
				break;
			case "s5":
				elements[i].onclick = function() {
					 imgs.showImg(5);
					 return false;
				}
				break;
			case "s6":
				elements[i].onclick = function() {
					 imgs.showImg(6);
					 return false;
				}
				break;				
			case "s7":
				elements[i].onclick = function() {
					 imgs.showImg(7);
					 return false;
				}
				break;
			case "s8":
				elements[i].onclick = function() {
					 imgs.showImg(8);
					 return false;
				}
				break;	
		}
	}
}

////////////////////////////////////////////////////////////////////////////////
// INIT

function init() {
	setOnMouseClick();
	// images gallery
	// load images note: imgsGallery[].image isn't an array of images, just strings to hold location
	imgsGallery[0] = new Object();
	imgsGallery[0].image = "work/illustration/unnatural.jpg";
	imgsGallery[0].title = "Unnatural";
	imgsGallery[0].caption = "";
	
	imgsGallery[1] = new Object();
	imgsGallery[1].image = "work/illustration/hed1.jpg";
	imgsGallery[1].title = "Hedonism (1/4)";
	imgsGallery[1].caption = "";
	
	imgsGallery[2] = new Object();
	imgsGallery[2].image = "work/illustration/hed2.jpg";
	imgsGallery[2].title = "Hedonism (2/4)";
	imgsGallery[2].caption = "";
	
	imgsGallery[3] = new Object();
	imgsGallery[3].image = "work/illustration/hed3.jpg";
	imgsGallery[3].title = "Hedonism (3/4)";
	imgsGallery[3].caption = "";

	imgsGallery[4] = new Object();
	imgsGallery[4].image = "work/illustration/hed4.jpg";
	imgsGallery[4].title = "Hedonism (4/4)";
	imgsGallery[4].caption = "";

	imgsGallery[5] = new Object();
	imgsGallery[5].image = "work/illustration/play.jpg";
	imgsGallery[5].title = "Play";
	imgsGallery[5].caption = "A collaboration with <a href=\"http://www.sophiekern.co.uk\">Sophie Kern</a>, <a href=\"http://www.bryonylloyd.co.uk\">Bryony Lloyd</a> and <a href=\"http://www.sarahparkercreative.com\">Sarah Parker</a>.";

	imgsGallery[6] = new Object();
	imgsGallery[6].image = "work/illustration/at1.jpg";
	imgsGallery[6].title = "Atoms and empty space (1/3)";
	imgsGallery[6].caption = "";

	imgsGallery[7] = new Object();
	imgsGallery[7].image = "work/illustration/at2.jpg";
	imgsGallery[7].title = "Atoms and empty space (2/3)";
	imgsGallery[7].caption = "";
	
	imgsGallery[8] = new Object();
	imgsGallery[8].image = "work/illustration/at3.jpg";
	imgsGallery[8].title = "Atoms and empty space (3/3)";
	imgsGallery[8].caption = "";	
	
	var start = 0;
	imgs = new MudFadeGallery('imgs', 'imgDisplay', imgsGallery, {startNum: start, preload: true, autoplay: 0});
	
	// set the initial captions
	var title = (imgsGallery[0].title) ? imgsGallery[0].title : "No Title";
	var caption = (imgsGallery[0].caption) ? imgsGallery[0].caption : "&nbsp;";
	$("imgDisplay_title").innerHTML = title;
	$("imgDisplay_caption").innerHTML = caption;
	$("imgDisplay_number").innerHTML = "1 of " + imgsGallery.length + " projects";
	$("imgDisplay").src = imgsGallery[start].image;
}

////////////////////////////////////////////////////////////////////////////////
// EVENTS

Event.observe(window, 'load', init, false);