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

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 setOnMouseClick2() {
	var elements = document.getElementsByTagName("a");
	for (var i = 0; i < elements.length; i++) {
		switch(elements[i].className) {
			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;case "s9":
				elements[i].onclick = function() {
					 imgs.showImg(9);
					 return false;
				}
				break;
			case "s10":
				elements[i].onclick = function() {
					 imgs.showImg(10);
					 return false;
				}
				break;
			case "s11":
				elements[i].onclick = function() {
					 imgs.showImg(11);
					 return false;
				}
				break;
			case "s12":
				elements[i].onclick = function() {
					 imgs.showImg(12);
					 return false;
				}
				break;
			case "s13":
				elements[i].onclick = function() {
					 imgs.showImg(13);
					 return false;
				}
				break;
		}
	}
}

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

function init() {
	setOnMouseClick2();
	// 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 = "images/projekte/wittlich/wittlich_1.jpg";
	imgsGallery[0].title = "Gebirgsmaschine und Portal, Ausstellungsansicht im Georg-Meistermann-Museum, Wittlich, 2009 <small></small>";
	imgsGallery[0].caption = "";
	imgsGallery[0].link = "";
	
	imgsGallery[1] = new Object();
	imgsGallery[1].image = "images/projekte/wittlich/wittlich_2.jpg";
	imgsGallery[1].title = "Gebirgsmaschine, 110 x 190 x 190 x cm, Marmor und V 2 A Stahl, 2006 <small></small>";
	imgsGallery[1].caption = "";
	imgsGallery[1].link = "";
	
	imgsGallery[2] = new Object();
	imgsGallery[2].image = "images/projekte/wittlich/wittlich_3.jpg";
	imgsGallery[2].title = "Ausstellungsansicht im Georg-Meistermann-Museum, Wittlich, 2009 <small></small>";
	imgsGallery[2].caption = "";
	imgsGallery[2].link = "";
	
	imgsGallery[3] = new Object();
	imgsGallery[3].image = "images/projekte/wittlich/wittlich_4.jpg";
	imgsGallery[3].title = "Quadrat 41, 27 x 27 x 10 cm, Marmor und Stahl, 2005 <small></small>";
	imgsGallery[3].caption = "";
	imgsGallery[3].link = "";
	
	imgsGallery[4] = new Object();
	imgsGallery[4].image = "images/projekte/wittlich/wittlich_5.jpg";
	imgsGallery[4].title = "6 Dünnschliffe, Marmor auf Glas bzw. Acrylglas, Ausstellungsansicht im Georg-Meistermann-Museum, Wittlich, 2009 <small></small>";
	imgsGallery[4].caption = "";
	imgsGallery[4].link = "";
	
	imgsGallery[5] = new Object();
	imgsGallery[5].image = "images/projekte/wittlich/wittlich_6.jpg";
	imgsGallery[5].title = "Dünnschliff 18, Marmor, Stahl und Acrylglas, 2008 <small></small>";
	imgsGallery[5].caption = "";
	imgsGallery[5].link = "";
	
	imgsGallery[6] = new Object();
	imgsGallery[6].image = "images/projekte/wittlich/wittlich_7.jpg";
	imgsGallery[6].title = "Siedlung, Marmor und Glas, 2008 <small></small>";
	imgsGallery[6].caption = "";
	imgsGallery[6].link = "";
	
	imgsGallery[7] = new Object();
	imgsGallery[7].image = "images/projekte/wittlich/wittlich_8.jpg";
	imgsGallery[7].title = "Binar 2, Marmor und Stahl, 2008 <small></small>";
	imgsGallery[7].caption = "";
	imgsGallery[7].link = "";
	
	imgsGallery[8] = new Object();
	imgsGallery[8].image = "images/projekte/wittlich/wittlich_9.jpg";
	imgsGallery[8].title = "Pol 20, Marmor und Stahl, 2008 <small></small>";
	imgsGallery[8].caption = "";
	imgsGallery[8].link = "";
	
	imgsGallery[9] = new Object();
	imgsGallery[9].image = "images/projekte/wittlich/wittlich_10.jpg";
	imgsGallery[9].title = "Ausstellungsansicht im Georg-Meistermann-Museum, Wittlich, 2009 <small></small>";
	imgsGallery[9].caption = "";
	imgsGallery[9].link = "";
	
	imgsGallery[10] = new Object();
	imgsGallery[10].image = "images/projekte/wittlich/wittlich_11.jpg";
	imgsGallery[10].title = "Portal, 200 x 60 x 60 cm , Marmor und V 2 A Stahl, 2006  <small></small>";
	imgsGallery[10].caption = "";
	imgsGallery[10].link = "";
	
	imgsGallery[11] = new Object();
	imgsGallery[11].image = "images/projekte/wittlich/wittlich_12.jpg";
	imgsGallery[11].title = "Portal, 200 x 60 x 60 cm , Marmor und V 2 A Stahl, 2006  <small></small>";
	imgsGallery[11].caption = "";
	imgsGallery[11].link = "";
	
	imgsGallery[12] = new Object();
	imgsGallery[12].image = "images/projekte/wittlich/wittlich_13.jpg";
	imgsGallery[12].title = "Portal und Gebirgsmaschine, Ausstellungsansicht im Georg-Meistermann-Museum, Wittlich, 2009 <small></small>";
	imgsGallery[12].caption = "";
	imgsGallery[12].link = "";
	
	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 : "";
	var caption = (imgsGallery[0].caption) ? imgsGallery[0].caption : "";
	$("imgDisplay_title").innerHTML = title;
	$("imgDisplay_caption").innerHTML = caption;
	$("imgDisplay_number").innerHTML = "1 / " + imgsGallery.length;
	$("imgDisplay").src = imgsGallery[start].image;
	$("imgDisplay_link").href = imgsGallery[start].link;
	$("imgDisplay_link").title = imgsGallery[start].title;
}

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

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