$j = jQuery.noConflict();
$j(function () {
    var $$;
    /**
    * 
    * @desc Convert images from a simple html <ul> into a thumbnail gallery
    * @author David Hellsing
    * @version 1.0
    *
    * @name Galleria
    * @type jQuery
    *
    * @cat plugins/Media
    * 
    * @example $('ul.gallery').galleria({options});
    * @desc Create a a gallery from an unordered list of images with thumbnails
    * @options
    *   insert:   (selector string) by default, Galleria will create a container div before your ul that holds the image.
    *             You can, however, specify a selector where the image will be placed instead (f.ex '#main_img')
    *   history:  Boolean for setting the history object in action with enabled back button, bookmarking etc.
    *   onImage:  (function) a function that gets fired when the image is displayed and brings the jQuery image object.
    *             You can use it to add click functionality and effects.
    *             f.ex onImage(image) { image.css('display','none').fadeIn(); } will fadeIn each image that is displayed
    *   onThumb:  (function) a function that gets fired when the thumbnail is displayed and brings the jQuery thumb object.
    *             Works the same as onImage except it targets the thumbnail after it's loaded.
    *
    **/

    $$ = $j.fn.galleria = function ($options) {

        // check for basic CSS support
        if (!$$.hasCSS()) { return false; }

        // init the modified history object
        $j.historyInit($$.onPageLoad);

        // set default options
        var $defaults = {
            insert: '.galleria_container',
            history: true,
            clickNext: true,
            onImage: function (image, caption, thumb) { },
            onThumb: function (thumb) { }
        };


        // extend the options
        var $opts = $j.extend($defaults, $options);

        // bring the options to the galleria object
        for (var i in $opts) {
            if (i) {
                $j.galleria[i] = $opts[i];
            }
        }

        // if no insert selector, create a new division and insert it before the ul
        var _insert = ($j($opts.insert).is($opts.insert)) ?
		$j($opts.insert) :
		jQuery(document.createElement('div')).insertBefore(this);

        // create a wrapping div for the image
        var _div = $j(document.createElement('div')).addClass('galleria_wrapper');

        // create a caption span
        var _span = $j(document.createElement('span')).addClass('caption');

        // inject the wrapper in in the insert selector
        _insert.addClass('galleria_container').append(_div).append(_span);

        //-------------

        return this.each(function () {

            // add the Galleria class
            $j(this).addClass('galleria');

            // loop through list
            $j(this).children('li').each(function (i) {

                // bring the scope
                var _container = $j(this);

                // build element specific options
                var _o = $j.meta ? $j.extend({}, $opts, _container.data()) : $opts;

                // remove the clickNext if image is only child
                _o.clickNext = $j(this).is(':only-child') ? false : _o.clickNext;

                // try to fetch an anchor
                var _a = $j(this).find('a').is('a') ? $j(this).find('a') : false;

                // reference the original image as a variable and hide it
                var _img = $j(this).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');

                // 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)) {
                    _container.siblings('.active').removeClass('active');
                    _container.addClass('active');
                }

                // begin loader
                $j(_loader).load(function () {

                    // try to bring the alt
                    $j(this).attr('alt', _img.attr('alt'));

                    //-----------------------------------------------------------------
                    // 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');

                    if (_a) { _a.replaceWith(_thumb); }

                    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);

                    // add the title attribute
                    _thumb.attr('title', _title);

                    // add the click functionality to the _thumb
                    _thumb.click(function () {
                        $j.galleria.activate(_src);
                    });

                    // hover classes for IE6
                    _thumb.hover(
					function () { $j(this).addClass('hover'); },
					function () { $j(this).removeClass('hover'); }
				);
                    _container.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 (_container.hasClass('active')) {
                        $j.galleria.activate(_src);
                        //_span.text(_title);
                    }

                    //-----------------------------------------------------------------

                    // finally delete the original image
                    _img.remove();

                }).error(function () {

                    // Error handling
                    _container.html('<span class="error" style="color:red">Error loading image: ' + _src + '</span>');

                }).attr('src', _src);
            });
        });
    };

    /**
    *
    * @name NextSelector
    *
    * @desc Returns the sibling sibling, or the first one
    *
    **/

    $$.nextSelector = function (selector) {
        return $j(selector).is(':last-child') ?
		   $j(selector).siblings(':first-child') :
    	   $j(selector).next();

    };

    /**
    *
    * @name previousSelector
    *
    * @desc Returns the previous sibling, or the last one
    *
    **/

    $$.previousSelector = function (selector) {
        return $j(selector).is(':first-child') ?
		   $j(selector).siblings(':last-child') :
    	   $j(selector).prev();

    };

    /**
    *
    * @name hasCSS
    *
    * @desc Checks for CSS support and returns a boolean value
    *
    **/

    $$.hasCSS = function () {
        $j('body').append(
		$j(document.createElement('div')).attr('id', 'css_test').css({ width: '1px', height: '1px', display: 'none' })
	);
        var _v = ($j('#css_test').width() != 1) ? false : true;
        $j('#css_test').remove();
        return _v;
    };

    /**
    *
    * @name onPageLoad
    *
    * @desc The function that displays the image and alters the active classes
    *
    * Note: This function gets called when:
    * 1. after calling $.historyInit();
    * 2. after calling $.historyLoad();
    * 3. after pushing "Go Back" button of a browser
    *
    **/

    $$.onPageLoad = function (_src) {

        // get the wrapper
        var _wrapper = $j('.galleria_wrapper');

        // get the thumb
        var _thumb = $j('.galleria img[rel="' + _src + '"]');

        if (_src) {

            // new hash location
            if ($j.galleria.history) {
                window.location = window.location.href.replace(/\#.*/, '') + '#' + _src;
            }

            // alter the active classes
            _thumb.parents('li').siblings('.active').removeClass('active');
            _thumb.parents('li').addClass('active');

            // define a new image
            var _img = $j(new Image()).attr('src', _src).addClass('replaced');

            // empty the wrapper and insert the new image
            _wrapper.empty().append(_img);

            // insert the caption
            _wrapper.siblings('.caption').text(_thumb.attr('title'));

            // fire the onImage function to customize the loaded image's features
            $j.galleria.onImage(_img, _wrapper.siblings('.caption'), _thumb);

            // add clickable image helper
            if ($j.galleria.clickNext) {
                _img.css('cursor', 'pointer').click(function () { $j.galleria.next(); });
            }

        } else {

            // clean up the container if none are active
            _wrapper.siblings().andSelf().empty();

            // remove active classes
            $j('.galleria li.active').removeClass('active');
        }

        // place the source in the galleria.current variable
        $j.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.
    *
    **/

    $j.extend({ galleria: {
        current: '',
        onImage: function () { },
        activate: function (_src) {
            if ($j.galleria.history) {
                $j.historyLoad(_src);
            } else {
                $$.onPageLoad(_src);
            }
        },
        next: function () {
            var _next = $j($$.nextSelector($j('.galleria img[rel="' + $j.galleria.current + '"]').parents('li'))).find('img').attr('rel');
            $j.galleria.activate(_next);
        },
        prev: function () {
            var _prev = $j($$.previousSelector($j('.galleria img[rel="' + $j.galleria.current + '"]').parents('li'))).find('img').attr('rel');
            $j.galleria.activate(_prev);
        }
    }
    });

}); //(jQuery) removed @noConflict


/**
*
* History extension for jQuery
* Credits to http://www.mikage.to/
*
**/


/*
* jQuery history plugin
*
* Copyright (c) 2006 Taku Sano (Mikage Sawatari)
* Licensed under the MIT License:
* http://www.opensource.org/licenses/mit-license.php
*
* Modified by Lincoln Cooper to add Safari support and only call the callback once during initialization
* for msie when no initial hash supplied.
*/


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) {
            // To stop the callback firing twice during initilization if no hash present
            if (jQuery.historyCurrentHash === '') {
                jQuery.historyCurrentHash = '#';
            }

            // add hidden iframe for IE
            $j("body").prepend('<iframe id="jQuery_history" style="display: none;"></iframe>');
            var ihistory = $j("#jQuery_history")[0];
            var iframe = ihistory.contentWindow.document;
            iframe.open();
            iframe.close();
            iframe.location.hash = current_hash;
        }
        else if ($j.browser.safari) {
            // etablish back/forward stacks
            jQuery.historyBackStack = [];
            jQuery.historyBackStack.length = history.length;
            jQuery.historyForwardStack = [];

            jQuery.isFirst = true;
        }
        jQuery.historyCallback(current_hash.replace(/^#/, ''));
        setInterval(jQuery.historyCheck, 100);
    },

    historyAddHistory: function (hash) {
        // This makes the looping function do something
        jQuery.historyBackStack.push(hash);

        jQuery.historyForwardStack.length = 0; // clear forwardStack (true click occured)
        this.isFirst = true;
    },

    historyCheck: function () {
        if (jQuery.browser.msie) {
            // On IE, check for location.hash of iframe
            var ihistory = $j("#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 ($j.browser.safari) {
            if (!jQuery.dontCheck) {
                var historyDelta = history.length - jQuery.historyBackStack.length;

                if (historyDelta) { // back or forward button has been pushed
                    jQuery.isFirst = false;
                    var i;
                    if (historyDelta < 0) { // back button has been pushed
                        // move items to forward stack
                        for (i = 0; i < Math.abs(historyDelta); i++) {
                            jQuery.historyForwardStack.unshift(jQuery.historyBackStack.pop());
                        }
                    } else { // forward button has been pushed
                        // move items to back stack
                        for (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) {
                    // back button has been pushed to beginning and URL already pointed to hash (e.g. a bookmark)
                    // document.URL doesn't change in Safari
                    if (document.URL.indexOf('#') >= 0) {
                        jQuery.historyCallback(document.URL.split('#')[1]);
                    } else {
                        current_hash = location.hash;
                        jQuery.historyCallback('');
                    }
                    jQuery.isFirst = true;
                }
            }
        } else {
            // otherwise, check for location.hash
            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 = $j("#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;
            // Manually keep track of the history values for Safari
            this.historyAddHistory(hash);

            // Wait a while before allowing checking so that Safari has time to update the "history" object
            // correctly (otherwise the check loop would detect a false change in hash).
            var fn = function () { jQuery.dontCheck = false; };
            window.setTimeout(fn, 200);
            jQuery.historyCallback(hash);
            // N.B. "location.hash=" must be the last line of code for Safari as execution stops afterwards.
            //      By explicitly using the "location.hash" command (instead of using a variable set to "location.hash") the
            //      URL in the browser and the "history" object are both updated correctly.
            location.hash = newhash;
        }
        else {
            jQuery.historyCallback(hash);
        }
    }
});


jQuery(function ($) {
    $('ul.gallery_list').addClass('show_gallery'); // adds new class name to maintain degradability
    $('.galleria_wrapper').remove();
    $('ul.show_gallery').galleria({
        history: false,
        clickNext: true,
        onImage: function (image, caption, thumb) {

            // fade in the image &amp; caption
            if (!($.browser.mozilla && navigator.appVersion.indexOf('Win') != -1)) { // FF/Win fades large images terribly slow
                image.css('display', 'none').fadeIn(160);
            }
            caption.css('display', 'none').fadeIn(160);

            // fetch the thumbnail container
            var _li = thumb.parents('li');

            // fade out inactive thumbnail
            _li.siblings().children('img.selected').fadeTo(500, 0.8);

            // fade in active thumbnail
            thumb.fadeTo('fast', 1).addClass('selected');

            // add a title for the clickable image
            image.attr('title', 'Click for next image »');

        },
        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.8';

            // 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.8); } // don't fade out if the parent is active
				)
        }
    }); // $('ul.show_gallery li:first').addClass('active'); // uncomment to display first image when gallery loads
});


jQuery.fn.makeacolumnlists = function (settings) {
    settings = jQuery.extend({
        cols: 3, 			// set number of columns
        colWidth: 0, 		// set width for each column or leave 0 for auto width
        equalHeight: false, 	// can be false, 'ul', 'ol', 'li'
        startN: 1				// first number on your ordered list
    }, settings);

    if (jQuery('> li', this)) {
        this.each(function (y) {
            var y = jQuery('.li_container').size(),
		    	height = 0,
		        maxHeight = 0,
				t = jQuery(this),
				classN = t.attr('class'),
				listsize = jQuery('> li', this).size(),
				percol = Math.ceil(listsize / settings.cols),
				contW = t.width(),
				bl = (isNaN(parseInt(t.css('borderLeftWidth'), 10)) ? 0 : parseInt(t.css('borderLeftWidth'), 10)),
				br = (isNaN(parseInt(t.css('borderRightWidth'), 10)) ? 0 : parseInt(t.css('borderRightWidth'), 10)),
				pl = parseInt(t.css('paddingLeft'), 10),
				pr = parseInt(t.css('paddingRight'), 10),
				ml = parseInt(t.css('marginLeft'), 10),
				mr = parseInt(t.css('marginRight'), 10),
				col_Width = Math.floor((contW - (settings.cols - 1) * (bl + br + pl + pr + ml + mr)) / settings.cols);
            if (settings.colWidth) {
                col_Width = settings.colWidth;
            }
            var colnum = 1,
				percol2 = percol;
            jQuery(this).addClass('li_cont1').wrap('<div id="li_container' + (++y) + '" class="li_container"></div>');
            for (var i = 0; i <= listsize; i++) {
                if (colnum > settings.cols) colnum = 1;
                var eq = jQuery('> li:eq(' + i + ')', this);
                eq.addClass('li_col' + colnum);
                colnum++;
                //if(i>=percol2) { percol2+=percol; colnum++; }
                //var eq = jQuery('> li:eq('+i+')',this);
                //eq.addClass('li_col'+ colnum);
                //if(jQuery(this).is('ol')){eq.attr('value', ''+(i+settings.startN))+'';}
            }
            jQuery(this).css({ cssFloat: 'left', width: '' + col_Width + 'px' });
            for (colnum = 2; colnum <= settings.cols; colnum++) {
                if (jQuery(this).is('ol')) {
                    jQuery('li.li_col' + colnum, this).appendTo('#li_container' + y).wrapAll('<ol class="li_cont' + colnum + ' ' + classN + '" style="float:left; width: ' + col_Width + 'px;"></ol>');
                } else {
                    jQuery('li.li_col' + colnum, this).appendTo('#li_container' + y).wrapAll('<ul class="li_cont' + colnum + ' ' + classN + '" style="float:left; width: ' + col_Width + 'px;"></ul>');
                }
            }
            if (settings.equalHeight == 'li') {
                for (colnum = 1; colnum <= settings.cols; colnum++) {
                    jQuery('#li_container' + y + ' li').each(function () {
                        var e = jQuery(this);
                        var border_top = (isNaN(parseInt(e.css('borderTopWidth'), 10)) ? 0 : parseInt(e.css('borderTopWidth'), 10));
                        var border_bottom = (isNaN(parseInt(e.css('borderBottomWidth'), 10)) ? 0 : parseInt(e.css('borderBottomWidth'), 10));
                        height = e.height() + parseInt(e.css('paddingTop'), 10) + parseInt(e.css('paddingBottom'), 10) + border_top + border_bottom;
                        maxHeight = (height > maxHeight) ? height : maxHeight;
                    });
                }
                for (colnum = 1; colnum <= settings.cols; colnum++) {
                    var eh = jQuery('#li_container' + y + ' li');
                    var border_top = (isNaN(parseInt(eh.css('borderTopWidth'), 10)) ? 0 : parseInt(eh.css('borderTopWidth'), 10));
                    var border_bottom = (isNaN(parseInt(eh.css('borderBottomWidth'), 10)) ? 0 : parseInt(eh.css('borderBottomWidth'), 10));
                    mh = maxHeight - (parseInt(eh.css('paddingTop'), 10) + parseInt(eh.css('paddingBottom'), 10) + border_top + border_bottom);
                    eh.height(mh);
                }
            } else
                if (settings.equalHeight == 'ul' || settings.equalHeight == 'ol') {
                    for (colnum = 1; colnum <= settings.cols; colnum++) {
                        jQuery('#li_container' + y + ' .li_cont' + colnum).each(function () {
                            var e = jQuery(this);
                            var border_top = (isNaN(parseInt(e.css('borderTopWidth'), 10)) ? 0 : parseInt(e.css('borderTopWidth'), 10));
                            var border_bottom = (isNaN(parseInt(e.css('borderBottomWidth'), 10)) ? 0 : parseInt(e.css('borderBottomWidth'), 10));
                            height = e.height() + parseInt(e.css('paddingTop'), 10) + parseInt(e.css('paddingBottom'), 10) + border_top + border_bottom;
                            maxHeight = (height > maxHeight) ? height : maxHeight;
                        });
                    }
                    for (colnum = 1; colnum <= settings.cols; colnum++) {
                        var eh = jQuery('#li_container' + y + ' .li_cont' + colnum);
                        var border_top = (isNaN(parseInt(eh.css('borderTopWidth'), 10)) ? 0 : parseInt(eh.css('borderTopWidth'), 10));
                        var border_bottom = (isNaN(parseInt(eh.css('borderBottomWidth'), 10)) ? 0 : parseInt(eh.css('borderBottomWidth'), 10));
                        mh = maxHeight - (parseInt(eh.css('paddingTop'), 10) + parseInt(eh.css('paddingBottom'), 10) + border_top + border_bottom);
                        /*eh.height(mh);*/
                    }
                }
            jQuery('#li_container' + y).append('<div style="clear:both; overflow:hidden; height:0px;"></div>');
        });
    }
}

jQuery.fn.uncolumnlists = function () {
    jQuery('.li_cont1').each(function (i) {
        var onecolSize = jQuery('#li_container' + (++i) + ' .li_cont1 > li').size();
        if (jQuery('#li_container' + i + ' .li_cont1').is('ul')) {
            jQuery('#li_container' + i + ' > ul > li').appendTo('#li_container' + i + ' ul:first');
            for (var j = 1; j <= onecolSize; j++) {
                jQuery('#li_container' + i + ' ul:first li').removeAttr('class').removeAttr('style');
            }
            jQuery('#li_container' + i + ' ul:first').removeAttr('style').removeClass('li_cont1').insertBefore('#li_container' + i);
        } else {
            jQuery('#li_container' + i + ' > ol > li').appendTo('#li_container' + i + ' ol:first');
            for (var j = 1; j <= onecolSize; j++) {
                jQuery('#li_container' + i + ' ol:first li').removeAttr('class').removeAttr('style');
            }
            jQuery('#li_container' + i + ' ol:first').removeAttr('style').removeClass('li_cont1').insertBefore('#li_container' + i);
        }
        jQuery('#li_container' + i).remove();
    });
}







//jQuery.noConflict();
jQuery(document).ready(function ($) {

    jQuery('.mcol').makeacolumnlists({ cols: 3, colWidth: 220, equalHeight: 'ul', startN: 1 });

});
