var JSGallery2 = new Class({
	Implements: Options,
	options: {
		'borderWidthDeselected': 2,	//the width of the border of an deselected image (should be the same as in css)
		'borderWidthSelected': 5,	//border width of the selected image
		'borderColor': '#996600',		//the color of the borders
		'loadingMask': '#fff',		//color of the mask overlay during loading of the big images
		'loadingOpacity': 0.6,		//opacity of the border div during loading (including the mask)
		'loadingImage': 'loading.gif',		//you may specify a loading image which is displayed while the big images are being loaded
		'selectSpeed': 200,			//the duration of the select effect in ms (high values will make it look ugly)
		'fadeSpeed': 250,			//the duration of the image fading effect in ms
		'pageSpeed': 1000,			//the duration of the change page effect in ms
		'prevHandle': null,			//if you pass a previous page handle in here, it will be hidden if it's not needed
		'nextHandle': null,			//like above, but for next page
		'titleTarget': 'caption',		//target HTML element where image texts are copied into
		'initialIndex': -1,			//which thumb to select after init. you could create deep links with it.
		'maxOpacity': 0.8			//maximum opacity before cursor reaches prev/next control, then it will be set to 1 instantly.
	},
	/**
	 *	Constructor. Starts up the whole thing :-)
	 *
	 *	This script is free to use. It has been created by http://www.aplusmedia.de and
	 *	can be downloaded on http://www.esteak.net.
	 *	License: GNU GPL 2.0: http://creativecommons.org/licenses/GPL/2.0/
	 *	Example on: http://blog.aplusmedia.de/moo-gallery2
	 *	Known issues:
	 *	- preloading does not care about initialIndex param
	 *	- hovering to a control over the border of the big image will make the other one flickering
	 *	- if you enter and leave the control area very quickly, the control flickers sometimes
	 *	- does not work in IE6
	 *
	 * 	@param {Array} thumbs, An array of HTML elements
	 *	@param {HTMLelement} bigImageContainer, the full size image
	 *	@param {HTMLelement} pageContainer, If you have several pages, put them in this container
	 *	@param {Object} options, You have to pass imagesPerPage if you have more than one!
	 */
	initialize: function(thumbs, bigImageContainer, pageContainer, options) {
		this.currentPageNumber = 0;
		this.loadedImages = 0;
		this.blockKeys = false;
		this.pageContainer = pageContainer;
		
		var imgWin = this.pageContainer.getFirst();
		var imgDiv = imgWin.getFirst();
		var imgH = imgDiv.getSize().y; 
		var imgW = imgDiv.getSize().x;
		var winH = imgWin.getSize().y; 
		var winW = imgWin.getSize().x;
		var columns = Math.floor(winW / imgW);
		var rows = Math.floor(winH / imgH);
		var imgVis = columns * rows; 
		this.imagesPerPage = imgVis;
		
		this.setOptions(options);
		this.thumbs = thumbs;
		this.bigImage = bigImageContainer;
		
		this.convertThumbs();
		
		this.createPages();
		
		if(this.options.initialIndex != -1) {
			this.selectByIndex(this.options.initialIndex);
		} else {
			this.gotoPage(0);
		}
		if($defined(this.options.loadingImage)) {
			new Asset.image(this.options.loadingImage);
		}
		this.loadNextImage();
	},
	createPages: function() {
		var imgAmt = this.thumbs.length;
		var pageAmt = Math.ceil(imgAmt / this.imagesPerPage);
		
		for (x=0; x<pageAmt-1; x++){
			var num = x+1;
			var pagex = new Element('div',{
				'id': 'page'+num,
				'class': 'page'
			});
			pagex.injectInside(this.pageContainer);
			var startSlice = (this.imagesPerPage*num);
			var endSlice =   (this.imagesPerPage*num)+this.imagesPerPage;
			
			if (imgAmt < endSlice){
				var contents = this.thumbs.slice(startSlice);
			}else{
				var contents = this.thumbs.slice(startSlice,endSlice);
			}
			for (i=0; i<contents.length; i++){
				contents[i].injectInside(pagex); 
			}
		}
	},
	keyboardHandler: function(event){
		if(!this.blockKeys) {
			if(event.code >= 49 && event.code <= 57) {
				this.gotoPage(event.key - 1);
			} else if (event.key == "left") {
				this.prevImage(event); 					
			} else if (event.key == "right") {
				this.nextImage(event);
			}
		}
	},
	convertThumbs: function() {
		this.thumbs.each(function(thumbContainer, count) {
			this.convertThumb(thumbContainer, count);
		}, this);
	},
	convertThumb: function(thumbContainer, count) {
		if(!$defined(thumbContainer)) {
			return;
		}
		thumbContainer.addEvent('click', this.select.bind(this, thumbContainer)).setStyle('position', 'relative').set('counter', count);

		var bigImage = thumbContainer.getFirst().get('rel');
		var border = new Element('div', {
			styles: {
				'border': this.options.borderWidthDeselected + 'px solid ' + this.options.borderColor,
				'width': thumbContainer.getSize().x - (this.options.borderWidthDeselected * 2),
				'height': thumbContainer.getSize().y - (this.options.borderWidthDeselected * 2),
				'position': 'absolute',
				'background-color': this.options.loadingMask,
				'top': 0,
				'left': 0
			},
			'rel': bigImage,
			'description': thumbContainer.getFirst().innerHTML,
			'link': thumbContainer.getFirst().href
		}).injectTop(thumbContainer).set('opacity', this.options.loadingOpacity);
	},
	unBlockKeys: function() {
		this.blockKeys = false;
	},
	select: function(container) {
		if(this.blockKeys || !$defined(container)) {
			return false;
		}
		this.blockKeys = true;
		if($defined(this.selectedContainer)) {
			if(container == this.selectedContainer) {
				this.unBlockKeys();
				return false;
			}
			this.deselect(this.selectedContainer);
		}
		var targetPage = Math.floor(container.get('counter') / this.imagesPerPage);
		if(this.currentPageNumber != targetPage) {
			this.gotoPage(targetPage, container);
		}
		this.selectedContainer = container;
		//make calculations a bit more handy
		var s = container.getSize();
		var des = this.options.borderWidthDeselected;
		var sel = this.options.borderWidthSelected;

		new Fx.Morph(container.getFirst(), {
			duration: this.options.selectSpeed, 
			transition: Fx.Transitions.Quad.easeOut
		}).start({
			'border-width': [des, sel + 'px'],
			'width': [s.x, s.x - 2 * this.options.borderWidthDeselected - 2 * (sel - des) ],
			'height': [s.y, s.y - 2 * this.options.borderWidthDeselected - 2 * (sel - des)]
		});
		var source = container.getFirst();
		if (source.get('link') != 'javascript:void(0);' && source.get('link') != ''){
			this.setImage(source.get('rel'),source.get('description'),source.get('link'));
		}else{
			this.setImage(source.get('rel'),source.get('description'));
		}
	},
	loadNextImage: function() {
		var thumbContainer = this.thumbs[this.loadedImages].getFirst();
		if($defined(this.options.loadingImage)) {
			new Element('img', {'src': this.options.loadingImage}).injectTop(thumbContainer);
		}
		var imageToLoad = thumbContainer.get('rel');
		new Asset.image(imageToLoad, {
			onload: this.imageLoaded.bind(this, this.thumbs[this.loadedImages])
		});
	},
	imageLoaded: function(thumbContainer) {
		this.loadedImages++;
		if($defined(this.options.loadingImage)) {
			//remove loading gif
			thumbContainer.getFirst().getFirst().destroy();
		}
		//remove loading styles
		thumbContainer.getFirst().setStyle('background-color', 'transparent').setOpacity(1);
		if(this.loadedImages < this.thumbs.length) {
			this.loadNextImage();
		}
	},
	/**
	 * Selects an image by its thumbnail index.
	 * @param {integer} index of the thumbnail, starting with 0
	 */
	selectByIndex: function(index) {
		//this.mouseLeaveHandler();
		if(index < 0 || this.thumbs.length <= index) {
			index = 0;
		}
		this.select(this.thumbs[index]);
	},
	/**
	 *	Opposite to method above.
	 *	@param {HTMLelement} container
	 */
	deselect: function(container) {
		new Fx.Morph(container.getFirst(), {duration: this.options.selectSpeed, transition: Fx.Transitions.Quad.easeOut}).start({
			'border-width': this.options.borderWidthDeselected + 'px',
			'width': container.getSize().x - 2 * this.options.borderWidthDeselected,
			'height': container.getSize().y - 2 * this.options.borderWidthDeselected
		});
	},
	/**
	 *	Changes the full size image to given one.
	 *	@param {String} newSrc, new target of the full size image
	 *	@param {String} newText, new text for the info element
	 */
	setImage: function(newSrc,newText,newLink) {
		var effect = new Fx.Tween(this.bigImage, {duration: this.options.fadeSpeed, transition: Fx.Transitions.Quad.easeOut});
		effect.start('opacity', 0).chain(function(){									  
			this.bigImage.set('src', newSrc);
			if (newLink != ''){this.bigImage.getParent().set('href',newLink)};
			//this.mouseLeaveHandler();
			effect.start('opacity', 1).chain(this.unBlockKeys.bind(this));
		}.bind(this));
		
		var caption = $(this.options.titleTarget);
		
		if (newText !== null){
			var captionEffect = new Fx.Tween(caption, {duration: this.options.fadeSpeed, transition: Fx.Transitions.Quad.easeOut});
			
			captionEffect.start('opacity', 0).chain(function(){
				if($defined($(this.options.titleTarget))) {
					$(this.options.titleTarget).set('html', newText);
				}
				new Asset.image(newSrc, {
					onload: function(){
						captionEffect.start('opacity', 1).chain(caption.set('styles', {'width':$('bigImage').getSize().x, 'display':'block'} )) 
					}
				});
			}.bind(this));
			captionEffect.start('opacity', 1).chain(this.unBlockKeys.bind(this));
			
		}else{
			caption.set('styles', {'display':'none'})
		}
	},
	/**
	 *	Navigates to previous page.
	 */
	prevPage: function() {
		this.gotoPage(this.currentPageNumber - 1);
	},
	/**
	 *	Navigates to next page.
	 */
	nextPage: function() {
		this.gotoPage(this.currentPageNumber + 1);
	},
	/**
	 *	Selects the previous image.
	 */
	prevImage: function(e) {
		e = new Event(e).stop();
		this.selectByIndex(this.thumbs.indexOf(this.selectedContainer) - 1);
	},
	/**
	 *	Selects the next image.
	 */
	nextImage: function(e) {
		e = new Event(e).stop();
		this.selectByIndex(this.thumbs.indexOf(this.selectedContainer) + 1);
	},
	/**
	 *	Navigates to given page and selects the first image of it.
	 *	Also hides the handles (if set).
	 *	@param {Integer} pageNumber, index of the target page (0-n)
	 *  @param {HTMLElement} selectImage, optionally receives a particular image to select
	 */
	gotoPage: function(pageNumber, selectImage) {
		//if we like to select another image on that page than the first one
		selectImage = $pick(selectImage, this.thumbs[pageNumber * this.imagesPerPage]);
		var lastPage = Math.ceil(this.thumbs.length / this.imagesPerPage);
		if(pageNumber >= 0 && pageNumber < lastPage) {
			this.pageContainer.set('tween', {
				duration: this.options.pageSpeed, 
				transition: Fx.Transitions.Quint.easeInOut
			});
			this.pageContainer.tween('margin-left', this.pageContainer.getFirst().getSize().x * pageNumber * -1);
			this.currentPageNumber = pageNumber;
			this.select(selectImage);
			
			//update handles
			if($defined(this.options.prevHandle)) {
				new Fx.Tween(this.options.prevHandle, {duration:this.options.fadeSpeed * 2}).start('opacity', pageNumber == 0 ? 0 : 1);
			}
			if($defined(this.options.nextHandle)) {
				new Fx.Tween(this.options.nextHandle, {duration:this.options.fadeSpeed * 2}).start('opacity', pageNumber == lastPage - 1 ? 0 : 1);
			}
		}
	}
});
