/*
    contentSlider v1.1
*/

(function($) {

    $.contentSlider = function(el, options) {

        var base = this;

        base.$el = $(el);
        base.el = el;

        base.currentPage = 1;
        base.timer = null;
        base.playing = false;

        base.$el.data("ContentSlider", base);

        base.init = function() {
            base.options = $.extend({}, $.contentSlider.defaults, options);

            base.$wrapper = base.$el.find('.Wrapper').css('overflow', 'hidden');
            base.$sliderNav = base.$el.find('.Controls');
            base.$slider = base.$wrapper.find('> ul');
            base.$items = base.$slider.find('> li');
            base.$single = base.$items.filter(':first');

            if (base.options.buildNavigation) base.buildNavigation();

            base.singleWidth = base.$single.outerWidth();
            base.pages = base.$items.length;

            //base.$items.filter(':first').before(base.$items.filter(':last').clone().addClass('cloned'));
            //base.$items.filter(':last').after(base.$items.filter(':first').clone().addClass('cloned'));

            base.$items = base.$slider.find('> li');

            base.buildNextBackButtons();

            if (base.options.autoPlay) {
                base.playing = !base.options.startStopped;
                base.buildAutoPlay();
            };

            if (base.options.pauseOnHover) {
                base.$el.hover(function() {
                    base.clearTimer();
                    base.$el.addClass(base.options.classNameHover); // end simon
                }, function() {
                    if (!movieIsPlaying) base.startStop(base.playing); // simon (only added if-case)
                    base.$el.removeClass(base.options.classNameHover); // simon
                });
            }

            if ((base.options.hashTags == true && !base.gotoHash()) || base.options.hashTags == false) {
                base.setCurrentPage(1);
            };
        };

        base.gotoPage = function(page, autoplay) {
            
            if (autoplay !== true) autoplay = true;
            if (!autoplay) base.startStop(false);

            if (typeof (page) == "undefined" || page == null) {
                page = 1;
                base.setCurrentPage(1);
            };

            if (page > base.pages) page = 1;
            if (page < 0) page = 1;

            var dir = page < base.currentPage ? -1 : 1,
                n = Math.abs(base.currentPage - page),
                left = base.singleWidth * dir * n;

            base.$wrapper.filter(':not(:animated)').animate({
                scrollLeft: '+=' + left
            }, base.options.animationTime, base.options.easing, function() {
                if (page == 0) {
                    base.$wrapper.scrollLeft(base.singleWidth * base.pages);
                    page = base.pages;
                } else if (page > base.pages) {
                    base.$wrapper.scrollLeft(base.singleWidth);

                    page = 1;
                };
                base.setCurrentPage(page);

            });
        };

        base.setCurrentPage = function(page, move) {

            if (base.options.buildNavigation) {
                base.$nav.find('.cur').removeClass('cur');
                $(base.$navLinks[page - 1]).addClass('cur');
            };

            if (move !== false) base.$wrapper.scrollLeft(base.singleWidth * (page - 1));

            base.currentPage = page;
        };

        base.goForward = function(autoplay) {
            if (autoplay !== true) autoplay = true;
            base.gotoPage(base.currentPage + 1, autoplay);
        };

        base.goBack = function() {
            base.gotoPage(base.currentPage - 1);
        };

        base.gotoHash = function() {
            if (/^#?panel-\d+$/.test(window.location.hash)) {
                var index = parseInt(window.location.hash.substr(7));
                var $item = base.$items.filter(':eq(' + index + ')');
                if ($item.length != 0) {
                    base.setCurrentPage(index);
                    return true;
                };
            };
            return false; // A item wasn't found;
        };

        base.buildNavigation = function() {
            base.$nav = $("<div id='thumbNav'></div>").appendTo(base.$sliderNav);
            base.$items.each(function(i, el) {
                var index = i + 1;
                var $a = $("<a href='#'></a>");

                if (typeof (base.options.navigationFormatter) == "function") {
                    $a.html(base.options.navigationFormatter(index, $(this)));
                } else {
                    $a.text(index);
                }
                $a.click(function(e) {
                    base.gotoPage(index);
                    stopMovie();

                    if (base.options.hashTags)
                        base.setHash('panel-' + index);

                    e.preventDefault();
                });
                base.$nav.append($a);
            });
            base.$navLinks = base.$nav.find('> a');
        };

        base.buildNextBackButtons = function() {
            var $forward = $('<a class="arrow forward">&gt;</a>'),
				$back = $('<a class="arrow back">&lt;</a>');

            $back.click(function(e) {
                base.goBack();
                e.preventDefault();
            });

            $forward.click(function(e) {
                base.goForward();
                e.preventDefault();
            });

            base.$nav.prepend($back).append($forward);
        };

        base.buildAutoPlay = function() {

            base.$startStop = $("<a href='#' id='start-stop'></a>").html(base.playing ? base.options.stopText : base.options.startText);
            base.$sliderNav.append(base.$startStop);
            base.$startStop.click(function(e) {
                base.startStop(!base.playing);
                e.preventDefault();
            });

            base.startStop(base.playing);
        };

        // Handles stopping and playing the slideshow
        // Pass startStop(false) to stop and startStop(true) to play
        base.startStop = function(playing) {
            if (playing !== true) playing = false; // Default if not supplied is false

            base.playing = playing; // simon
            //base.playing = !playing; // simon

            // Toggle playing and text
            if (base.options.autoPlay) base.$startStop.toggleClass("playing", playing).html(playing ? base.options.stopText : base.options.startText);

            if (playing) {
                base.clearTimer(); // Just in case this was triggered twice in a row
                base.timer = window.setInterval(function() {
                    base.goForward(true);
                }, base.options.delay);
            } else {
                base.clearTimer();
            };
        };

        base.clearTimer = function() {
            if (base.timer) window.clearInterval(base.timer);
        };

        base.setHash = function(hash) {

            if (typeof window.location.hash !== 'undefined') {
                if (window.location.hash !== hash) {
                    window.location.hash = hash;
                };
            } else if (location.hash !== hash) {
                location.hash = hash;
            };

            return hash;
        };

        base.init();
    };

    $.contentSlider.defaults = {
        easing: "swing",                // Anything other than "linear" or "swing" requires the easing plugin
        autoPlay: true,                 // This turns off the entire FUNCTIONALY, not just if it starts running or not
        startStopped: false,            // If autoPlay is on, this can force it to start stopped
        delay: 3000,                    // How long between slide transitions in AutoPlay mode
        animationTime: 600,             // How long the slide transition takes
        hashTags: true,                 // Should links change the hashtag in the URL?
        buildNavigation: true,          // If true, builds and list of anchor links to link to each slide
        pauseOnHover: true,             // If true, and autoPlay is enabled, the show will pause on hover
        startText: "Start",             // Start text
        stopText: "Stop",               // Stop text
        navigationFormatter: null,
        classNameHover: "slider-hover"  // Simon // This class-name will be added to the carousle-div on mouseover and removed on mouseout
    };

    $.fn.contentSlider = function(options) {
        if (typeof (options) == "object") {
            return this.each(function(i) {
                (new $.contentSlider(this, options));

                // This plugin supports multiple instances, but only one can support hash-tag support
                // This disables hash-tags on all items but the first one
                options.hashTags = false;
            });
        } else if (typeof (options) == "number") {

            return this.each(function(i) {
                var anySlide = $(this).data('ContentSlider');
                if (anySlide) {
                    anySlide.gotoPage(options);
                }
            });
        }
    };

    $.fn.play = function() {
        var anySlide = $(this).data('ContentSlider');
        //console.log($(this).data('ContentSlider').playing);
        if (anySlide) {
            anySlide.startStop($(this).data('ContentSlider').playing);
        }
    }

})(jQuery);

