/*	Example demonstrating usage of the Ajax-ready Sliding Gallery	Licenses:	(c) Creative Commons 2006	http://creativecommons.org/licenses/by-sa/2.5/				Free to use with my prior permission	Author: Kevin Hoang Le | http://pragmaticobjects.org	Date: 2006-06-30*/var mainPage = Class.create();mainPage.prototype = {	gallery : 0,	BOX_WIDTH : 840,	SCROLL_AMOUNT : 150,  //image width	//SCROLL_AMOUNT : 0, //use individual width	DISPLAY_IMAGES : 5,	BACK_IMG : "pics/ico_ff_passiv_li.gif",	BACK_HOVER_IMG : "pics/ico_ff_aktiv_li.gif",	BACK_DISABLED_IMG : "pics/ico_ff_nicht.gif",	FORWARD_IMG : "pics/ico_ff_passiv_re.gif",	FORWARD_HOVER_IMG : "pics/ico_ff_aktiv_re.gif",	FORWARD_DISABLED_IMG : "pics/ico_ff_nicht.gif",	category : 0,	initialize : function() {			this.gallery = new gallerySlide(this.BOX_WIDTH, this.SCROLL_AMOUNT, this.DISPLAY_IMAGES, this.BACK_IMG,			this.BACK_HOVER_IMG, this.BACK_DISABLED_IMG, this.FORWARD_IMG, this.FORWARD_HOVER_IMG,			this.FORWARD_DISABLED_IMG, "#737373", "#e2001a", this.imageClickEvt);			      this.category = {            "item" :  [{ "id" : "img1" , "img" : "foto_s/reise_kr1_s.jpg", "largeImg" : "foto/reise_kr1_l.jpg" },{ "id" : "img2" , "img" : "foto_s/reise_kr4_s.jpg", "largeImg" : "foto/reise_kr4_l.jpg" },{ "id" : "img3" , "img" : "foto_s/reise_kr7_s.jpg", "largeImg" : "foto/reise_kr7_l.jpg" },{ "id" : "img4" , "img" : "foto_s/reise_kr3_s.jpg", "largeImg" : "foto/reise_kr3_l.jpg" },{ "id" : "img5" , "img" : "foto_s/reise_kr5_s.jpg", "largeImg" : "foto/reise_kr5_l.jpg" },{ "id" : "img6" , "img" : "foto_s/reise_kr6_s.jpg", "largeImg" : "foto/reise_kr6_l.jpg" },{ "id" : "img7" , "img" : "foto_s/reise_kr2_s.jpg", "largeImg" : "foto/reise_kr2_l.jpg" },{ "id" : "img8" , "img" : "foto_s/reise_f1_s.jpg", "largeImg" : "foto/reise_f1_l.jpg" },{ "id" : "img9" , "img" : "foto_s/reise_f2_s.jpg", "largeImg" : "foto/reise_f2_l.jpg" },{ "id" : "img10" , "img" : "foto_s/reise_f3_s.jpg", "largeImg" : "foto/reise_f3_l.jpg" },{ "id" : "img11" , "img" : "foto_s/reise_usa1_s.jpg", "largeImg" : "foto/reise_usa1_l.jpg" },{ "id" : "img12" , "img" : "foto_s/reise_usa5_s.jpg", "largeImg" : "foto/reise_usa5_l.jpg" },{ "id" : "img13" , "img" : "foto_s/reise_usa4_s.jpg", "largeImg" : "foto/reise_usa4_l.jpg" },{ "id" : "img16" , "img" : "foto_s/reise_usa2_s.jpg", "largeImg" : "foto/reise_usa2_l.jpg" },{ "id" : "img15" , "img" : "foto_s/reise_usa3_s.jpg", "largeImg" : "foto/reise_usa3_l.jpg" },{ "id" : "img14" , "img" : "foto_s/reise_usa5getty_s.jpg", "largeImg" : "foto/reise_usa5getty_l.jpg" },{ "id" : "img17" , "img" : "foto_s/reise_ny_s.jpg", "largeImg" : "foto/reise_ny_l.jpg" }            ]        };        this.gallery.render(this.category);		new Effect.Appear($("largeImage"));		//preload images with CSS		this.category.item.each(function(item, i) {			var image = document.createElement("img");			image.src = item.largeImg;			image.style.display = 'none';			$("preload").appendChild(image);		});	},		imageClickEvt : function(item, i, obj) {				new Effect.Opacity($("aa"),			{				duration: 0.5, 				transition:Effect.Transitions.linear,				from: 0.5,				to: 0.0,				afterFinish:function(effect) {										$("aa").src = item.largeImg;					new Effect.Appear($("aa"));				}			});	}}