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

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;
		}
	}
}

////////////////////////////////////////////////////////////////////////////////
// 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/gruppen/pole/pole_1.jpg";
	imgsGallery[0].title = "Pol 6a, 27 x27 x 10 cm, Marmor und Stahl, 2005 <small></small>";
	imgsGallery[0].caption = "";
	imgsGallery[0].link = "";
	imgsGallery[1] = new Object();
	imgsGallery[1].image = "images/gruppen/pole/pole_2.jpg";
	imgsGallery[1].title = "Pol 12, Stahl und Marmor, 69 x 69 x 10 cm, 2004, Privatsammlung Korea <small></small>";
	imgsGallery[1].caption = "";
	imgsGallery[1].link = "";
	imgsGallery[2] = new Object();
	imgsGallery[2].image = "images/gruppen/pole/pole_3.jpg";
	imgsGallery[2].title = "Pol 12, Stahl und Marmor, 69 x 69 x 10 cm, 2004, Privatsammlung Korea <small></small>";
	imgsGallery[2].caption = "";
	imgsGallery[2].link = "";
	imgsGallery[3] = new Object();
	imgsGallery[3].image = "images/gruppen/pole/pole_4.jpg";
	imgsGallery[3].title = "Pol 14, 27 x27 x 10 cm, Marmor und Stahl, 2003, Privatsammlung Österreich <small></small>";
	imgsGallery[3].caption = "";
	imgsGallery[3].link = "";
	imgsGallery[4] = new Object();
	imgsGallery[4].image = "images/gruppen/pole/pole_5.jpg";
	imgsGallery[4].title = "Pol 7, 27 x27 x 10 cm, Marmor und Stahl, 2003, Privatsammlung Schwandorf <small></small>";
	imgsGallery[4].caption = "";
	imgsGallery[4].link = "";
	imgsGallery[5] = new Object();
	imgsGallery[5].image = "images/gruppen/pole/pole_6.jpg";
	imgsGallery[5].title = "Pol 2, Marmor und Stahl, 180 x 45 x 45 cm, 2002 <small></small>";
	imgsGallery[5].caption = "";
	imgsGallery[5].link = "";
	imgsGallery[6] = new Object();
	imgsGallery[6].image = "images/gruppen/pole/pole_8.jpg";
	imgsGallery[6].title = "Pol, 220 x 220 x 2 cm, Marmor und Stahl, 2001 <small></small>";
	imgsGallery[6].caption = "";
	imgsGallery[6].link = "";
	imgsGallery[7] = new Object();
	imgsGallery[7].image = "images/gruppen/pole/pole_9.jpg"; //NEU
	imgsGallery[7].title = "Pol 19, Stahl und Marmor, 15 x15 x 5 cm, 2008, Privatsammlung Korea  <small></small>";
	imgsGallery[7].caption = "";
	imgsGallery[7].link = "";
	imgsGallery[8] = new Object();
	imgsGallery[8].image = "images/gruppen/pole/pole_10.jpg";
	imgsGallery[8].title = "Pol 20, Stahl und Marmor, 69 x69 x 5 cm, 2008, Privatsammlung München <small></small>"; //NEU
	imgsGallery[8].caption = "";
	imgsGallery[8].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);
