/**
 * BASED ON: Galleria (http://monc.se/kitchen) Version 1.0
 * DO NOT USE! THIS VERSION HAS BEEN CHANGED SIGNIFICANTLY!!!
 * Copyright (c) 2008 David Hellsing (http://monc.se) Licensed under the GPL licenses. http://www.gnu.org/licenses/gpl.txt
 **/

;(function($){

var $$;

$$ = $.fn.galleria = function($options) {
	
	// check for basic CSS support
	if (!$$.hasCSS()) { return false; }
	
	// init the modified history object
	//$.historyInit($$.onPageLoad);
	
	// set default options
	var $defaults = {
		insert      : '.galleria-thumbs',
		history     : false,
		clickNext   : false,
		thumbSize 	: 30,
		//onImage     : function(image,caption,thumb) {},
		//onThumb     : function(thumb) {}
		onImage   : function(image,caption,thumb) { // let's add some image effects for demonstration purposes

			// fade in the image & caption
			image.css('display','none').fadeIn(1000);
			caption.css('display','none').fadeIn(1000);

			// fetch the thumbnail container
			var _li = thumb.parents('li');

			// fade out inactive thumbnail
			_li.siblings().children('img.selected').fadeTo(500,0.3);

			// fade in active thumbnail
			thumb.fadeTo('fast',1).addClass('selected');

			// add a title for the clickable image
			//image.attr('title',thumb.attr('title'));
			image = thumb;
		},
		onThumb : function(thumb) { // thumbnail effects goes here

			// fetch the thumbnail container
			var _li = thumb.parents('li');

			// if thumbnail is active, fade all the way.
			var _fadeTo = _li.is('.active') ? '1' : '0.3';

			// fade in the thumbnail when finnished loading
			thumb.css({display:'none',opacity:_fadeTo}).fadeIn(1500);

			// hover effects
			thumb.hover(
				function() { thumb.fadeTo('fast',1); },
				function() { _li.not('.active').children('img').fadeTo('fast',0.3); } // don't fade out if the parent is active
			)
		}
	};
	

	// extend the options
	var $opts = $.extend($defaults, $options);
	
	// bring the options to the galleria object
	for (var i in $opts) {
		$.galleria[i]  = $opts[i];
	}
	
	if ($($opts.insert).size() < 1) {
		$('.thumbs').html('<ul class="galleria-thumbs"></ul>');
	}
	
	// if no insert selector, create a new division and insert it after the ul
	//var _insert = ( $($opts.insert).is($opts.insert) ) ? 
	//	$($opts.insert) : 
	//	jQuery(document.createElement('ul')).insertAfter(this);
		
	// create a wrapping div for the image
	//var _div = $(document.createElement('div')).addClass('galleria_wrapper');
	
	// create a caption span
	//var _span = $(document.createElement('span')).addClass('caption');
	
	// inject the wrapper in in the insert selector
	//_insert.addClass('galleria-thumbs');//.append(_div).append(_span);
	
	//-------------
	
	return this.each(function(){
		// add the Galleria class
		//$(this).addClass('galleria');
		
		// loop through list
		$(this).children('li').each(function(i) {
			// each li child: get all the info and create a thumbnail of the image to be used as the nav in the player.
			
			// bring the scope
			var _container = $(this);
			var _clone = $(this).clone(true);
			$($opts.insert).append(_clone);
			
			
			// build element specific options
			var _o = $.meta ? $.extend({}, $opts, _clone.data()) : $opts;
			
			// remove the clickNext if image is only child
			//_o.clickNext = _clone.is(':only-child') ? false : _o.clickNext;
			_clone.find('h4, p').remove();
			_clone.find('div').replaceWith(_clone.find('a'));
			
			// try to fetch an anchor
			var _a = _clone.find('a').is('a') ? _clone.find('a') : false;
			
			// reference the original image as a variable and hide it
			var _img = _clone.children('img').css('display','none');
			
			// extract the original source
			var _src = _a ? _a.attr('href') : _img.attr('src');
			
			// find a title
			var _title = _a ? _a.attr('title') : _img.attr('title');
			
			var _id = _a ? _a.attr('id') : _img.attr('id');
			
			// create loader image            
			var _loader = new Image();
			
			// check url and activate container if match
			//if (_o.history && (window.location.hash && window.location.hash.replace(/\#/,'') == _src)) {
			//if (i == 0) {
				//_clone.siblings('.active').removeClass('active');
				//_clone.addClass('active');
				//$($opt.insert).find('li:first').addClass('active');
				//alert(_clone.html());
			
			//}
			$($opts.insert).find('li').removeClass('active');
			$($opts.insert).find('li:first').addClass('active');
					
			// begin loader
			$(_loader).load(function () {
				
				// try to bring the alt
				_clone.attr('alt',_img.attr('alt'));
				
				
				//alert(this);
				
				//-----------------------------------------------------------------
				// the image is loaded, let's create the thumbnail
				
				var _thumb = _a ? 
					_a.find('img').addClass('thumb noscale').css('display','none') :
					_img.clone(true).addClass('thumb').css('display','none');				
				
				//_thumb = $(_thumb.get(0));
				
				if (_a) { _a.replaceWith(_thumb); }
				//$(_thumb).parent('li').replaceWith(_thumb);
				
				
				var _newsrc = _thumb.attr('src');
				_newsrc = _newsrc.replace(/width=(\d+)/, 'width=' + $opts.thumbSize);
				_newsrc = _newsrc.replace(/height=(\d+)/, 'height=' + $opts.thumbSize);
				
				_thumb.attr('src', _newsrc + '&cropratio=1:1');
				
				if (!_thumb.hasClass('noscale')) { // scaled tumbnails!
					var w = Math.ceil( _img.width() / _img.height() * _container.height() );
					var h = Math.ceil( _img.height() / _img.width() * _container.width() );
					if (w < h) {
						_thumb.css({ height: 'auto', width: _container.width(), marginTop: -(h-_container.height())/2 });
					} else {
						_thumb.css({ width: 'auto', height: _container.height(), marginLeft: -(w-_container.width())/2 });
					}
				} else { // Center thumbnails.
					// a tiny timer fixed the width/height
					window.setTimeout(function() {
						_thumb.css({
							marginLeft: -( _thumb.width() - _container.width() )/2, 
							marginTop:  -( _thumb.height() - _container.height() )/2
						});
					}, 1);
				}
				
				// add the rel attribute
				_thumb.attr('rel',_src);
				_thumb.attr('id', 'thumb-' + _id);
				
				// add the title attribute
				_thumb.attr('title',_title);
				
				// add the click functionality to the _thumb
				_thumb.click(function() {
					$.galleria.activate(_src);
				});
				
				// hover classes for IE6
				_thumb.hover(
					function() { _clone.addClass('hover'); },
					function() { _clone.removeClass('hover'); }
				);
				_clone.hover(
					function() { _container.addClass('hover'); },
					function() { _container.removeClass('hover'); }
				);

				// prepend the thumbnail in the container
				//_container.prepend(_thumb);
				
				// show the thumbnail
				_thumb.css('display','block');
				
				// call the onThumb function
				_o.onThumb(jQuery(_thumb));
				
				// check active class and activate image if match
				if (_clone.hasClass('active')) {
					$.galleria.activate(_src);
					//_span.text(_title);
				}
				
				// finally delete the original image
				_img.remove();
				
			}).error(function () {
				
				// Error handling
			    _clone.html('<span class="error" style="color:red">Error loading image: '+_src+'</span>');
			
			}).attr('src', _src);
			
		});
	});
};

$$.nextSelector = function(selector) {
	return $(selector).is(':last-child') ?
		   $(selector).siblings(':first-child') :
    	   $(selector).next();
    	   
};

$$.previousSelector = function(selector) {
	return $(selector).is(':first-child') ?
		   $(selector).siblings(':last-child') :
    	   $(selector).prev();
    	   
};

$$.hasCSS = function()  {
	$('body').append(
		$(document.createElement('div')).attr('id','css_test')
		.css({ width:'1px', height:'1px', display:'none' })
	);
	var _v = ($('#css_test').width() != 1) ? false : true;
	$('#css_test').remove();
	return _v;
};

$$.onPageLoad = function(_src) {	
	// get the wrapper
	var _wrapper = $('.galleria_wrapper');
	
	// get the thumb
	var _thumb = $($.galleria.insert + ' img[@rel="'+_src+'"]');
	
	if (_src) {
		
		// new hash location
		//if ($.galleria.history) {
		//	window.location = window.location.href.replace(/\#.*/,'') + '#' + _src;
		//}
		_thumb.parent('li').parent().children('li').each(function(i) {
			if ($(this).find('img').attr('rel') == _src) {
				$(this).parent().parent().siblings('.count').find('.current').html(i+1);
			}
		});
		
		// alter the active classes
		_thumb.parents('li').siblings('.active').removeClass('active');
		_thumb.parent('li').addClass('active');
		//$('.galleria-thumbs').find('li').removeClass('active');
		
		$('.galleria li').removeClass('active').hide().find('img, p, h4').fadeOut();
		$("#" + _thumb.attr('id').substr(6)).parent('div').parent('li').addClass('active').show().find('img, p, h4').fadeIn();
		
		// define a new image
		var _img   = $(new Image()).addClass('replaced');
		
		// empty the wrapper and insert the new image
		//_wrapper.html('<a href="' + _thumb.attr('rel') + '" title="' + _thumb.attr('title') + '"></a>');
		//_wrapper.find('a').append(_img);
		_wrapper.append(_img);

		// insert the caption
		_wrapper.siblings('.caption').text(_thumb.attr('title'));
		
		// fire the onImage function to customize the loaded image's features
		$.galleria.onImage(_img,_wrapper.siblings('.caption'),_thumb);
		
		// add clickable image helper
		//if($.galleria.clickNext) {
		//	_img.css('cursor','pointer').click(function() { $.galleria.next(); })
		//}
		
	} else {
		
		// clean up the container if none are active
		_wrapper.siblings().andSelf().empty();
		
		// remove active classes
		$('.galleria li.active').removeClass('active');
	}

	// place the source in the galleria.current variable
	$.galleria.current = _src;
	
}

/**
 *
 * @name jQuery.galleria
 *
 * @desc The global galleria object holds four constant variables and four public methods:
 *       $.galleria.history = a boolean for setting the history object in action with named URLs
 *       $.galleria.current = is the current source that's being viewed.
 *       $.galleria.clickNext = boolean helper for adding a clickable image that leads to the next one in line
 *       $.galleria.next() = displays the next image in line, returns to first image after the last.
 *       $.galleria.prev() = displays the previous image in line, returns to last image after the first.
 *       $.galleria.activate(_src) = displays an image from _src in the galleria container.
 *       $.galleria.onImage(image,caption) = gets fired when the image is displayed.
 *
**/

$.extend({galleria : {
	current : '',
	onImage : function(){},
	activate : function(_src) { 
		//if ($.galleria.history) {
		//	$.historyLoad(_src);
		//} else {
		if (_src != $.galleria.current)
			$$.onPageLoad(_src);
		//}
	},
	next : function() {
		var _next = $($$.nextSelector($($.galleria.insert + ' img[@rel="'+$.galleria.current+'"]').parents('li'))).find('img').attr('rel');
		$.galleria.activate(_next);
	},
	prev : function() {
		var _prev = $($$.previousSelector($($.galleria.insert + ' img[@rel="'+$.galleria.current+'"]').parents('li'))).find('img').attr('rel');
		$.galleria.activate(_prev);
	}
}
});

})(jQuery);

$(document).ready(function(){
	$('ul.galleria').galleria({thumbSize:30});
});

	function toggleMediaPlayerContent(link, type) {
		$(link.parentNode.parentNode).find('li').removeClass('selected');
		$(link.parentNode).addClass('selected');
		$(link).parents('.content-mediaplayer').find('.mediaplayer-content-container').removeClass('selected');
		$(link).parents('.content-mediaplayer').find('.mediaplayer-' + type).addClass('selected');
	} // toggleMediaPlayerContent



/**
 * Packed history extension for jQuery
 * Credits to http://www.mikage.to/
**/

//jQuery.extend({historyCurrentHash:undefined,historyCallback:undefined,historyInit:function(callback){jQuery.historyCallback=callback;var current_hash=location.hash;jQuery.historyCurrentHash=current_hash;if(jQuery.browser.msie){if(jQuery.historyCurrentHash==''){jQuery.historyCurrentHash='#'}$("body").prepend('<iframe id="jQuery_history" style="display: none;"></iframe>');var ihistory=$("#jQuery_history")[0];var iframe=ihistory.contentWindow.document;iframe.open();iframe.close();iframe.location.hash=current_hash}else if($.browser.safari){jQuery.historyBackStack=[];jQuery.historyBackStack.length=history.length;jQuery.historyForwardStack=[];jQuery.isFirst=true}jQuery.historyCallback(current_hash.replace(/^#/,''));setInterval(jQuery.historyCheck,100)},historyAddHistory:function(hash){jQuery.historyBackStack.push(hash);jQuery.historyForwardStack.length=0;this.isFirst=true},historyCheck:function(){if(jQuery.browser.msie){var ihistory=$("#jQuery_history")[0];var iframe=ihistory.contentDocument||ihistory.contentWindow.document;var current_hash=iframe.location.hash;if(current_hash!=jQuery.historyCurrentHash){location.hash=current_hash;jQuery.historyCurrentHash=current_hash;jQuery.historyCallback(current_hash.replace(/^#/,''))}}else if($.browser.safari){if(!jQuery.dontCheck){var historyDelta=history.length-jQuery.historyBackStack.length;if(historyDelta){jQuery.isFirst=false;if(historyDelta<0){for(var i=0;i<Math.abs(historyDelta);i++)jQuery.historyForwardStack.unshift(jQuery.historyBackStack.pop())}else{for(var i=0;i<historyDelta;i++)jQuery.historyBackStack.push(jQuery.historyForwardStack.shift())}var cachedHash=jQuery.historyBackStack[jQuery.historyBackStack.length-1];if(cachedHash!=undefined){jQuery.historyCurrentHash=location.hash;jQuery.historyCallback(cachedHash)}}else if(jQuery.historyBackStack[jQuery.historyBackStack.length-1]==undefined&&!jQuery.isFirst){if(document.URL.indexOf('#')>=0){jQuery.historyCallback(document.URL.split('#')[1])}else{var current_hash=location.hash;jQuery.historyCallback('')}jQuery.isFirst=true}}}else{var current_hash=location.hash;if(current_hash!=jQuery.historyCurrentHash){jQuery.historyCurrentHash=current_hash;jQuery.historyCallback(current_hash.replace(/^#/,''))}}},historyLoad:function(hash){var newhash;if(jQuery.browser.safari){newhash=hash}else{newhash='#'+hash;location.hash=newhash}jQuery.historyCurrentHash=newhash;if(jQuery.browser.msie){var ihistory=$("#jQuery_history")[0];var iframe=ihistory.contentWindow.document;iframe.open();iframe.close();iframe.location.hash=newhash;jQuery.historyCallback(hash)}else if(jQuery.browser.safari){jQuery.dontCheck=true;this.historyAddHistory(hash);var fn=function(){jQuery.dontCheck=false};window.setTimeout(fn,200);jQuery.historyCallback(hash);location.hash=newhash}else{jQuery.historyCallback(hash)}}});

