(function($) {

 

    $.fn.jcarousel = function(o) {

        return this.each(function() {

            new $jc(this, o);

        });

    };



    // Default configuration properties.

    var defaults = {

        vertical: false,

        start: 1,

        offset: 1,

        size: null,

        scroll: 3,

        visible: null,

        animation: 'normal',

        easing: 'swing',

        auto: 0,

        wrap: null,

        initCallback: null,

        reloadCallback: null,

        itemLoadCallback: null,

        itemFirstInCallback: null,

        itemFirstOutCallback: null,

        itemLastInCallback: null,

        itemLastOutCallback: null,

        itemVisibleInCallback: null,

        itemVisibleOutCallback: null,

        buttonNextHTML: '<div></div>',

        buttonPrevHTML: '<div></div>',

        buttonNextEvent: 'click',

        buttonPrevEvent: 'click',

        buttonNextCallback: null,

        buttonPrevCallback: null

    };



    /**

     * The jCarousel object.

     *

     * @constructor

     * @name $.jcarousel

     * @param Object e The element to create the carousel for.

     * @param Hash o A set of key/value pairs to set as configuration properties.

     * @cat Plugins/jCarousel

     */

    $.jcarousel = function(e, o) {

        this.options    = $.extend({}, defaults, o || {});



        this.locked     = false;



        this.container  = null;

        this.clip       = null;

        this.list       = null;

        this.buttonNext = null;

        this.buttonPrev = null;



        this.wh = !this.options.vertical ? 'width' : '';

        this.lt = !this.options.vertical ? 'left' : 'top';



        // Extract skin class

        var skin = '', split = e.className.split(' ');



        for (var i = 0; i < split.length; i++) {

            if (split[i].indexOf('jcarousel-skin') != -1) {

                $(e).removeClass(split[i]);

                var skin = split[i];

                break;

            }

        }



        if (e.nodeName == 'UL' || e.nodeName == 'OL') {

            this.list = $(e);

            this.container = this.list.parent();



            if (this.container.hasClass('jcarousel-clip')) {

                if (!this.container.parent().hasClass('jcarousel-container'))

                    this.container = this.container.wrap('<div></div>');



                this.container = this.container.parent();

            } else if (!this.container.hasClass('jcarousel-container'))

                this.container = this.list.wrap('<div></div>').parent();

        } else {

            this.container = $(e);

            this.list = $(e).find('>ul,>ol,div>ul,div>ol');

        }



        if (skin != '' && this.container.parent()[0].className.indexOf('jcarousel-skin') == -1)

        	this.container.wrap('<div class=" '+ skin + '"></div>');



        this.clip = this.list.parent();



        if (!this.clip.length || !this.clip.hasClass('jcarousel-clip'))

            this.clip = this.list.wrap('<div></div>').parent();



        this.buttonPrev = $('.jcarousel-prev', this.container);



        if (this.buttonPrev.size() == 0 && this.options.buttonPrevHTML != null)

            this.buttonPrev = this.clip.before(this.options.buttonPrevHTML).prev();



        this.buttonPrev.addClass(this.className('jcarousel-prev'));



        this.buttonNext = $('.jcarousel-next', this.container);



        if (this.buttonNext.size() == 0 && this.options.buttonNextHTML != null)

            this.buttonNext = this.clip.before(this.options.buttonNextHTML).prev();



        this.buttonNext.addClass(this.className('jcarousel-next'));



        this.clip.addClass(this.className('jcarousel-clip'));

        this.list.addClass(this.className('jcarousel-list'));

        this.container.addClass(this.className('jcarousel-container'));



        var di = this.options.visible != null ? Math.ceil(this.clipping() / this.options.visible) : null;

        var li = this.list.children('li');



        var self = this;



        if (li.size() > 0) {

            var wh = 0, i = this.options.offset;

            li.each(function() {

                self.format(this, i++);

                wh += self.dimension(this, di);

            });



            this.list.css(this.wh, wh + 'px');



            // Only set if not explicitly passed as option

            if (!o || o.size === undefined)

                this.options.size = li.size();

        }



        // For whatever reason, .show() does not work in Safari...

        this.container.css('display', 'block');

        this.buttonNext.css('display', 'block');

        this.buttonPrev.css('display', 'block');



        this.funcNext   = function() { self.next(); };

        this.funcPrev   = function() { self.prev(); };

        this.funcResize = function() { self.reload(); };



        if (this.options.initCallback != null)

            this.options.initCallback(this, 'init');



        if ($.browser.safari) {

            this.buttons(false, false);

            $(window).bind('load', function() { self.setup(); });

        } else

            this.setup();

    };



    // Create shortcut for internal use

    var $jc = $.jcarousel;



    $jc.fn = $jc.prototype = {

        jcarousel: '0.2.3'

    };



    $jc.fn.extend = $jc.extend = $.extend;



    $jc.fn.extend({

        /**

         * Setups the carousel.

         *

         * @name setup

         * @type undefined

         * @cat Plugins/jCarousel

         */

        setup: function() {

            this.first     = null;

            this.last      = null;

            this.prevFirst = null;

            this.prevLast  = null;

            this.animating = false;

            this.timer     = null;

            this.tail      = null;

            this.inTail    = false;



            if (this.locked)

                return;



            this.list.css(this.lt, this.pos(this.options.offset) + 'px');

            var p = this.pos(this.options.start);

            this.prevFirst = this.prevLast = null;

            this.animate(p, false);



            $(window).unbind('resize', this.funcResize).bind('resize', this.funcResize);

        },



        /**

         * Clears the list and resets the carousel.

         *

         * @name reset

         * @type undefined

         * @cat Plugins/jCarousel

         */

        reset: function() {

            this.list.empty();



            this.list.css(this.lt, '0px');

            this.list.css(this.wh, '10px');



            if (this.options.initCallback != null)

                this.options.initCallback(this, 'reset');



            this.setup();

        },



        /**

         * Reloads the carousel and adjusts positions.

         *

         * @name reload

         * @type undefined

         * @cat Plugins/jCarousel

         */

        reload: function() {

            if (this.tail != null && this.inTail)

                this.list.css(this.lt, $jc.intval(this.list.css(this.lt)) + this.tail);



            this.tail   = null;

            this.inTail = false;



            if (this.options.reloadCallback != null)

                this.options.reloadCallback(this);



            if (this.options.visible != null) {

                var self = this;

                var di = Math.ceil(this.clipping() / this.options.visible), wh = 0, lt = 0;

                $('li', this.list).each(function(i) {

                    wh += self.dimension(this, di);

                    if (i + 1 < self.first)

                        lt = wh;

                });



                this.list.css(this.wh, wh + 'px');

                this.list.css(this.lt, -lt + 'px');

            }



            this.scroll(this.first, false);

        },



        /**

         * Locks the carousel.

         *

         * @name lock

         * @type undefined

         * @cat Plugins/jCarousel

         */

        lock: function() {

            this.locked = true;

            this.buttons();

        },



        /**

         * Unlocks the carousel.

         *

         * @name unlock

         * @type undefined

         * @cat Plugins/jCarousel

         */

        unlock: function() {

            this.locked = false;

            this.buttons();

        },



        /**

         * Sets the size of the carousel.

         *

         * @name size

         * @type undefined

         * @param Number s The size of the carousel.

         * @cat Plugins/jCarousel

         */

        size: function(s) {

            if (s != undefined) {

                this.options.size = s;

                if (!this.locked)

                    this.buttons();

            }



            return this.options.size;

        },



        /**

         * Checks whether a list element exists for the given index (or index range).

         *

         * @name get

         * @type bool

         * @param Number i The index of the (first) element.

         * @param Number i2 The index of the last element.

         * @cat Plugins/jCarousel

         */

        has: function(i, i2) {

            if (i2 == undefined || !i2)

                i2 = i;



            if (this.options.size !== null && i2 > this.options.size)

            	i2 = this.options.size;



            for (var j = i; j <= i2; j++) {

                var e = this.get(j);

                if (!e.length || e.hasClass('jcarousel-item-placeholder'))

                    return false;

            }



            return true;

        },



        /**

         * Returns a jQuery object with list element for the given index.

         *

         * @name get

         * @type jQuery

         * @param Number i The index of the element.

         * @cat Plugins/jCarousel

         */

        get: function(i) {

            return $('.jcarousel-item-' + i, this.list);

        },



        /**

         * Adds an element for the given index to the list.

         * If the element already exists, it updates the inner html.

         * Returns the created element as jQuery object.

         *

         * @name add

         * @type jQuery

         * @param Number i The index of the element.

         * @param String s The innerHTML of the element.

         * @cat Plugins/jCarousel

         */

        add: function(i, s) {

            var e = this.get(i), old = 0, add = 0;



            if (e.length == 0) {

                var c, e = this.create(i), j = $jc.intval(i);

                while (c = this.get(--j)) {

                    if (j <= 0 || c.length) {

                        j <= 0 ? this.list.prepend(e) : c.after(e);

                        break;

                    }

                }

            } else

                old = this.dimension(e);



            e.removeClass(this.className('jcarousel-item-placeholder'));

            typeof s == 'string' ? e.html(s) : e.empty().append(s);



            var di = this.options.visible != null ? Math.ceil(this.clipping() / this.options.visible) : null;

            var wh = this.dimension(e, di) - old;



            if (i > 0 && i < this.first)

                this.list.css(this.lt, $jc.intval(this.list.css(this.lt)) - wh + 'px');



            this.list.css(this.wh, $jc.intval(this.list.css(this.wh)) + wh + 'px');



            return e;

        },



        /**

         * Removes an element for the given index from the list.

         *

         * @name remove

         * @type undefined

         * @param Number i The index of the element.

         * @cat Plugins/jCarousel

         */

        remove: function(i) {

            var e = this.get(i);



            // Check if item exists and is not currently visible

            if (!e.length || (i >= this.first && i <= this.last))

                return;



            var d = this.dimension(e);



            if (i < this.first)

                this.list.css(this.lt, $jc.intval(this.list.css(this.lt)) + d + 'px');



            e.remove();



            this.list.css(this.wh, $jc.intval(this.list.css(this.wh)) - d + 'px');

        },



        /**

         * Moves the carousel forwards.

         *

         * @name next

         * @type undefined

         * @cat Plugins/jCarousel

         */

        next: function() {

            this.stopAuto();



            if (this.tail != null && !this.inTail)

                this.scrollTail(false);

            else

                this.scroll(((this.options.wrap == 'both' || this.options.wrap == 'last') && this.options.size != null && this.last == this.options.size) ? 1 : this.first + this.options.scroll);

        },



        /**

         * Moves the carousel backwards.

         *

         * @name prev

         * @type undefined

         * @cat Plugins/jCarousel

         */

        prev: function() {

            this.stopAuto();



            if (this.tail != null && this.inTail)

                this.scrollTail(true);

            else

                this.scroll(((this.options.wrap == 'both' || this.options.wrap == 'first') && this.options.size != null && this.first == 1) ? this.options.size : this.first - this.options.scroll);

        },



        /**

         * Scrolls the tail of the carousel.

         *

         * @name scrollTail

         * @type undefined

         * @param Bool b Whether scroll the tail back or forward.

         * @cat Plugins/jCarousel

         */

        scrollTail: function(b) {

            if (this.locked || this.animating || !this.tail)

                return;



            var pos  = $jc.intval(this.list.css(this.lt));



            !b ? pos -= this.tail : pos += this.tail;

            this.inTail = !b;



            // Save for callbacks

            this.prevFirst = this.first;

            this.prevLast  = this.last;



            this.animate(pos);

        },



        /**

         * Scrolls the carousel to a certain position.

         *

         * @name scroll

         * @type undefined

         * @param Number i The index of the element to scoll to.

         * @param Bool a Flag indicating whether to perform animation.

         * @cat Plugins/jCarousel

         */

        scroll: function(i, a) {

            if (this.locked || this.animating)

                return;



            this.animate(this.pos(i), a);

        },



        /**

         * Prepares the carousel and return the position for a certian index.

         *

         * @name pos

         * @type Number

         * @param Number i The index of the element to scoll to.

         * @cat Plugins/jCarousel

         */

        pos: function(i) {

            if (this.locked || this.animating)

                return;



            i = $jc.intval(i);

            if (this.options.wrap != 'circular')

                i = i < 1 ? 1 : (this.options.size && i > this.options.size ? this.options.size : i);



            var back = this.first > i;

            var pos  = $jc.intval(this.list.css(this.lt));



            // Create placeholders, new list width/height

            // and new list position

            var f = this.options.wrap != 'circular' && this.first <= 1 ? 1 : this.first;

            var c = back ? this.get(f) : this.get(this.last);

            var j = back ? f : f - 1;

            var e = null, l = 0, p = false, d = 0;



            while (back ? --j >= i : ++j < i) {

                e = this.get(j);

                p = !e.length;

                if (e.length == 0) {

                    e = this.create(j).addClass(this.className('jcarousel-item-placeholder'));

                    c[back ? 'before' : 'after' ](e);

                }



                c = e;

                d = this.dimension(e);



                if (p)

                    l += d;



                if (this.first != null && (this.options.wrap == 'circular' || (j >= 1 && (this.options.size == null || j <= this.options.size))))

                    pos = back ? pos + d : pos - d;

            }



            // Calculate visible items

            var clipping = this.clipping();

            var cache = [];

            var visible = 0, j = i, v = 0;

            var c = this.get(i - 1);



            while (++visible) {

                e = this.get(j);

                p = !e.length;

                if (e.length == 0) {

                    e = this.create(j).addClass(this.className('jcarousel-item-placeholder'));

                    // This should only happen on a next scroll

                    c.length == 0 ? this.list.prepend(e) : c[back ? 'before' : 'after' ](e);

                }



                c = e;

                var d = this.dimension(e);

                if (d == 0) {

                    alert('jCarousel: No width/height set for items. This will cause an infinite loop. Aborting...');

                    return 0;

                }



                if (this.options.wrap != 'circular' && this.options.size !== null && j > this.options.size)

                    cache.push(e);

                else if (p)

                    l += d;



                v += d;



                if (v >= clipping)

                    break;



                j++;

            }



             // Remove out-of-range placeholders

            for (var x = 0; x < cache.length; x++)

                cache[x].remove();



            // Resize list

            if (l > 0) {

                this.list.css(this.wh, this.dimension(this.list) + l + 'px');



                if (back) {

                    pos -= l;

                    this.list.css(this.lt, $jc.intval(this.list.css(this.lt)) - l + 'px');

                }

            }



            // Calculate first and last item

            var last = i + visible - 1;

            if (this.options.wrap != 'circular' && this.options.size && last > this.options.size)

                last = this.options.size;



            if (j > last) {

                visible = 0, j = last, v = 0;

                while (++visible) {

                    var e = this.get(j--);

                    if (!e.length)

                        break;

                    v += this.dimension(e);

                    if (v >= clipping)

                        break;

                }

            }



            var first = last - visible + 1;

            if (this.options.wrap != 'circular' && first < 1)

                first = 1;



            if (this.inTail && back) {

                pos += this.tail;

                this.inTail = false;

            }



            this.tail = null;

            if (this.options.wrap != 'circular' && last == this.options.size && (last - visible + 1) >= 1) {

                var m = $jc.margin(this.get(last), !this.options.vertical ? 'marginRight' : 'marginBottom');

                if ((v - m) > clipping)

                    this.tail = v - clipping - m;

            }



            // Adjust position

            while (i-- > first)

                pos += this.dimension(this.get(i));



            // Save visible item range

            this.prevFirst = this.first;

            this.prevLast  = this.last;

            this.first     = first;

            this.last      = last;



            return pos;

        },



        /**

         * Animates the carousel to a certain position.

         *

         * @name animate

         * @type undefined

         * @param mixed p Position to scroll to.

         * @param Bool a Flag indicating whether to perform animation.

         * @cat Plugins/jCarousel

         */

        animate: function(p, a) {

            if (this.locked || this.animating)

                return;



            this.animating = true;



            var self = this;

            var scrolled = function() {

                self.animating = false;



                if (p == 0)

                    self.list.css(self.lt,  0);



                if (self.options.wrap == 'both' || self.options.wrap == 'last' || self.options.size == null || self.last < self.options.size)

                    self.startAuto();



                self.buttons();

                self.notify('onAfterAnimation');

            };



            this.notify('onBeforeAnimation');



            // Animate

            if (!this.options.animation || a == false) {

                this.list.css(this.lt, p + 'px');

                scrolled();

            } else {

                var o = !this.options.vertical ? {'left': p} : {'top': p};

                this.list.animate(o, this.options.animation, this.options.easing, scrolled);

            }

        },



        /**

         * Starts autoscrolling.

         *

         * @name auto

         * @type undefined

         * @param Number s Seconds to periodically autoscroll the content.

         * @cat Plugins/jCarousel

         */

        startAuto: function(s) {

            if (s != undefined)

                this.options.auto = s;



            if (this.options.auto == 0)

                return this.stopAuto();



            if (this.timer != null)

                return;



            var self = this;

            this.timer = setTimeout(function() { self.next(); }, this.options.auto * 1000);

        },



        /**

         * Stops autoscrolling.

         *

         * @name stopAuto

         * @type undefined

         * @cat Plugins/jCarousel

         */

        stopAuto: function() {

            if (this.timer == null)

                return;



            clearTimeout(this.timer);

            this.timer = null;

        },



        /**

         * Sets the states of the prev/next buttons.

         *

         * @name buttons

         * @type undefined

         * @cat Plugins/jCarousel

         */

        buttons: function(n, p) {

            if (n == undefined || n == null) {

                var n = !this.locked && this.options.size !== 0 && ((this.options.wrap && this.options.wrap != 'first') || this.options.size == null || this.last < this.options.size);

                if (!this.locked && (!this.options.wrap || this.options.wrap == 'first') && this.options.size != null && this.last >= this.options.size)

                    n = this.tail != null && !this.inTail;

            }



            if (p == undefined || p == null) {

                var p = !this.locked && this.options.size !== 0 && ((this.options.wrap && this.options.wrap != 'last') || this.first > 1);

                if (!this.locked && (!this.options.wrap || this.options.wrap == 'last') && this.options.size != null && this.first == 1)

                    p = this.tail != null && this.inTail;

            }



            var self = this;



            this.buttonNext[n ? 'bind' : 'unbind'](this.options.buttonNextEvent, this.funcNext)[n ? 'removeClass' : 'addClass'](this.className('jcarousel-next-disabled')).attr('disabled', n ? false : true);

            this.buttonPrev[p ? 'bind' : 'unbind'](this.options.buttonPrevEvent, this.funcPrev)[p ? 'removeClass' : 'addClass'](this.className('jcarousel-prev-disabled')).attr('disabled', p ? false : true);



            if (this.buttonNext.length > 0 && (this.buttonNext[0].jcarouselstate == undefined || this.buttonNext[0].jcarouselstate != n) && this.options.buttonNextCallback != null) {

                this.buttonNext.each(function() { self.options.buttonNextCallback(self, this, n); });

                this.buttonNext[0].jcarouselstate = n;

            }



            if (this.buttonPrev.length > 0 && (this.buttonPrev[0].jcarouselstate == undefined || this.buttonPrev[0].jcarouselstate != p) && this.options.buttonPrevCallback != null) {

                this.buttonPrev.each(function() { self.options.buttonPrevCallback(self, this, p); });

                this.buttonPrev[0].jcarouselstate = p;

            }

        },



        notify: function(evt) {

            var state = this.prevFirst == null ? 'init' : (this.prevFirst < this.first ? 'next' : 'prev');



            // Load items

            this.callback('itemLoadCallback', evt, state);



            if (this.prevFirst !== this.first) {

                this.callback('itemFirstInCallback', evt, state, this.first);

                this.callback('itemFirstOutCallback', evt, state, this.prevFirst);

            }



            if (this.prevLast !== this.last) {

                this.callback('itemLastInCallback', evt, state, this.last);

                this.callback('itemLastOutCallback', evt, state, this.prevLast);

            }



            this.callback('itemVisibleInCallback', evt, state, this.first, this.last, this.prevFirst, this.prevLast);

            this.callback('itemVisibleOutCallback', evt, state, this.prevFirst, this.prevLast, this.first, this.last);

        },



        callback: function(cb, evt, state, i1, i2, i3, i4) {

            if (this.options[cb] == undefined || (typeof this.options[cb] != 'object' && evt != 'onAfterAnimation'))

                return;



            var callback = typeof this.options[cb] == 'object' ? this.options[cb][evt] : this.options[cb];



            if (!$.isFunction(callback))

                return;



            var self = this;



            if (i1 === undefined)

                callback(self, state, evt);

            else if (i2 === undefined)

                this.get(i1).each(function() { callback(self, this, i1, state, evt); });

            else {

                for (var i = i1; i <= i2; i++)

                    if (i !== null && !(i >= i3 && i <= i4))

                        this.get(i).each(function() { callback(self, this, i, state, evt); });

            }

        },



        create: function(i) {

            return this.format('<li></li>', i);

        },



        format: function(e, i) {

            var $e = $(e).addClass(this.className('jcarousel-item')).addClass(this.className('jcarousel-item-' + i));

            $e.attr('jcarouselindex', i);

            return $e;

        },



        className: function(c) {

            return c + ' ' + c + (!this.options.vertical ? '-horizontal' : '-vertical');

        },



        dimension: function(e, d) {

            var el = e.jquery != undefined ? e[0] : e;



            var old = !this.options.vertical ?

                el.offsetWidth + $jc.margin(el, 'marginLeft') + $jc.margin(el, 'marginRight') :

                el.offsetHeight + $jc.margin(el, 'marginTop') + $jc.margin(el, 'marginBottom');



            if (d == undefined || old == d)

                return old;



            var w = !this.options.vertical ?

                d - $jc.margin(el, 'marginLeft') - $jc.margin(el, 'marginRight') :

                d - $jc.margin(el, 'marginTop') - $jc.margin(el, 'marginBottom');



            $(el).css(this.wh, w + 'px');



            return this.dimension(el);

        },



        clipping: function() {

            return !this.options.vertical ?

                this.clip[0].offsetWidth - $jc.intval(this.clip.css('borderLeftWidth')) - $jc.intval(this.clip.css('borderRightWidth')) :

                this.clip[0].offsetHeight - $jc.intval(this.clip.css('borderTopWidth')) - $jc.intval(this.clip.css('borderBottomWidth'));

        },



        index: function(i, s) {

            if (s == undefined)

                s = this.options.size;



            return Math.round((((i-1) / s) - Math.floor((i-1) / s)) * s) + 1;

        }

    });



    $jc.extend({

        /**

         * Gets/Sets the global default configuration properties.

         *

         * @name defaults

         * @descr Gets/Sets the global default configuration properties.

         * @type Hash

         * @param Hash d A set of key/value pairs to set as configuration properties.

         * @cat Plugins/jCarousel

         */

        defaults: function(d) {

            return $.extend(defaults, d || {});

        },



        margin: function(e, p) {

            if (!e)

                return 0;



            var el = e.jquery != undefined ? e[0] : e;



            if (p == 'marginRight' && $.browser.safari) {

                var old = {'display': 'block', 'float': 'none', 'width': 'auto'}, oWidth, oWidth2;



                $.swap(el, old, function() { oWidth = el.offsetWidth; });



                old['marginRight'] = 0;

                $.swap(el, old, function() { oWidth2 = el.offsetWidth; });



                return oWidth2 - oWidth;

            }



            return $jc.intval($.css(el, p));

        },



        intval: function(v) {

            v = parseInt(v);

            return isNaN(v) ? 0 : v;

        }

    });



})(jQuery);

/*

 * 	Easy Slider 1.7 - jQuery plugin

 *	written by Alen Grakalic	

 *	http://cssglobe.com/post/4004/easy-slider-15-the-easiest-jquery-plugin-for-sliding

 *

 *	Copyright (c) 2009 Alen Grakalic (http://cssglobe.com)

 *	Dual licensed under the MIT (MIT-LICENSE.txt)

 *	and GPL (GPL-LICENSE.txt) licenses.

 *

 *	Built for jQuery library

 *	http://jquery.com

 *

 */

 

/*

 *	markup example for $("#slider").easySlider();

 *	

 * 	<div id="slider">

 *		<ul>

 *			<li><img src="images/01.jpg" alt="" /></li>

 *			<li><img src="images/02.jpg" alt="" /></li>

 *			<li><img src="images/03.jpg" alt="" /></li>

 *			<li><img src="images/04.jpg" alt="" /></li>

 *			<li><img src="images/05.jpg" alt="" /></li>

 *		</ul>

 *	</div>

 *

 */



(function($) {



	$.fn.easySlider = function(options){

	  

		// default configuration properties

		var defaults = {			

			prevId: 		'prevBtn',

			prevText: 		'Previous',

			nextId: 		'nextBtn',	

			nextText: 		'Next',

			controlsShow:	true,

			controlsBefore:	'',

			controlsAfter:	'',	

			controlsFade:	true,

			firstId: 		'firstBtn',

			firstText: 		'First',

			firstShow:		false,

			lastId: 		'lastBtn',	

			lastText: 		'Last',

			lastShow:		false,				

			vertical:		false,

			speed: 			800,

			auto:			false,

			pause:			4000,

			continuous:		true, 

			numeric: 		false,

			numericId: 		'controls'

		}; 

		

		var options = $.extend(defaults, options);  

				

		this.each(function() {  

			var obj = $(this); 				

			var s = $("li", obj).length;

			var w = $("li", obj).width(); 

			var h = $("li", obj).height(); 

			var clickable = true;

			obj.width(w); 

			obj.height(h); 

			obj.css("overflow","hidden");

			var ts = s-1;

			var t = 0;

			$("ul", obj).css('width',s*w);			

			

			if(options.continuous){

				$("ul", obj).prepend($("ul li:last-child", obj).clone().css("margin-left","-"+ w +"px"));

				$("ul", obj).append($("ul li:nth-child(2)", obj).clone());

				$("ul", obj).css('width',(s+1)*w);

			};				

			

			if(!options.vertical) $("li", obj).css('float','left');

								

			if(options.controlsShow){

				var html = options.controlsBefore;				

				if(options.numeric){

					html += '<ol id="'+ options.numericId +'"></ol>';

				} else {

					if(options.firstShow) html += '<span id="'+ options.firstId +'"><a href=\"javascript:void(0);\">'+ options.firstText +'</a></span>';

					html += ' <span id="'+ options.prevId +'"><a href=\"javascript:void(0);\">'+ options.prevText +'</a></span>';

					html += ' <span id="'+ options.nextId +'"><a href=\"javascript:void(0);\">'+ options.nextText +'</a></span>';

					if(options.lastShow) html += ' <span id="'+ options.lastId +'"><a href=\"javascript:void(0);\">'+ options.lastText +'</a></span>';				

				};

				

				html += options.controlsAfter;						

				$(obj).after(html);										

			};

			

			if(options.numeric){									

				for(var i=0;i<s;i++){						

					$(document.createElement("li"))

						.attr('id',options.numericId + (i+1))

						.html('<a rel='+ i +' href=\"javascript:void(0);\">'+ (i+1) +'</a>')

						.appendTo($("#"+ options.numericId))

						.click(function(){							

							animate($("a",$(this)).attr('rel'),true);

						}); 												

				};							

			} else {

				$("a","#"+options.nextId).click(function(){		

					animate("next",true);

				});

				$("a","#"+options.prevId).click(function(){		

					animate("prev",true);				

				});	

				$("a","#"+options.firstId).click(function(){		

					animate("first",true);

				});				

				$("a","#"+options.lastId).click(function(){		

					animate("last",true);				

				});				

			};

			

			function setCurrent(i){

				i = parseInt(i)+1;

				$("li", "#" + options.numericId).removeClass("current");

				$("li#" + options.numericId + i).addClass("current");

			};

			

			function adjust(){

				if(t>ts) t=0;		

				if(t<0) t=ts;	

				if(!options.vertical) {

					$("ul",obj).css("margin-left",(t*w*-1));

				} else {

					$("ul",obj).css("margin-left",(t*h*-1));

				}

				clickable = true;

				if(options.numeric) setCurrent(t);

			};

			

			function animate(dir,clicked){

				if (clickable){

					clickable = false;

					var ot = t;				

					switch(dir){

						case "next":

							t = (ot>=ts) ? (options.continuous ? t+1 : ts) : t+1;						

							break; 

						case "prev":

							t = (t<=0) ? (options.continuous ? t-1 : 0) : t-1;

							break; 

						case "first":

							t = 0;

							break; 

						case "last":

							t = ts;

							break; 

						default:

							t = dir;

							break; 

					};	

					var diff = Math.abs(ot-t);

					var speed = diff*options.speed;						

					if(!options.vertical) {

						p = (t*w*-1);

						$("ul",obj).animate(

							{ marginLeft: p }, 

							{ queue:false, duration:speed, complete:adjust }

						);				

					} else {

						p = (t*h*-1);

						$("ul",obj).animate(

							{ marginTop: p }, 

							{ queue:false, duration:speed, complete:adjust }

						);					

					};

					

					if(!options.continuous && options.controlsFade){					

						if(t==ts){

							$("a","#"+options.nextId).hide();

							$("a","#"+options.lastId).hide();

						} else {

							$("a","#"+options.nextId).show();

							$("a","#"+options.lastId).show();					

						};

						if(t==0){

							$("a","#"+options.prevId).hide();

							$("a","#"+options.firstId).hide();

						} else {

							$("a","#"+options.prevId).show();

							$("a","#"+options.firstId).show();

						};					

					};				

					

					if(clicked) clearTimeout(timeout);

					if(options.auto && dir=="next" && !clicked){;

						timeout = setTimeout(function(){

							animate("next",false);

						},diff*options.speed+options.pause);

					};

			

				};

				

			};

			// init

			var timeout;

			if(options.auto){;

				timeout = setTimeout(function(){

					animate("next",false);

				},options.pause);

			};		

			

			if(options.numeric) setCurrent(0);

		

			if(!options.continuous && options.controlsFade){					

				$("a","#"+options.prevId).hide();

				$("a","#"+options.firstId).hide();				

			};				

			

		});

	  

	};



})(jQuery);







/*

 * FancyBox - jQuery Plugin

 * simple and fancy lightbox alternative

 *

 * Copyright (c) 2009 Janis Skarnelis

 * Examples and documentation at: http://fancybox.net

 * 

 * Version: 1.2.6 (16/11/2009)

 * Requires: jQuery v1.3+

 * 

 * Dual licensed under the MIT and GPL licenses:

 *   http://www.opensource.org/licenses/mit-license.php

 *   http://www.gnu.org/licenses/gpl.html

 */



;(function($) {

	$.fn.fixPNG = function() {

		return this.each(function () {

			var image = $(this).css('backgroundImage');



			if (image.match(/^url\(["']?(.*\.png)["']?\)$/i)) {

				image = RegExp.$1;

				$(this).css({

					'backgroundImage': 'none',

					'filter': "progid:DXImageTransform.Microsoft.AlphaImageLoader(enabled=true, sizingMethod=" + ($(this).css('backgroundRepeat') == 'no-repeat' ? 'crop' : 'scale') + ", src='" + image + "')"

				}).each(function () {

					var position = $(this).css('position');

					if (position != 'absolute' && position != 'relative')

						$(this).css('position', 'relative');

				});

			}

		});

	};



	var elem, opts, busy = false, imagePreloader = new Image, loadingTimer, loadingFrame = 1, imageRegExp = /\.(jpg|gif|png|bmp|jpeg)(.*)?$/i;

	var ieQuirks = null, IE6 = $.browser.msie && $.browser.version.substr(0,1) == 6 && !window.XMLHttpRequest, oldIE = IE6 || ($.browser.msie && $.browser.version.substr(0,1) == 7);



	$.fn.fancybox = function(o) {

		var settings		= $.extend({}, $.fn.fancybox.defaults, o);

		var matchedGroup	= this;



		function _initialize() {

			elem = this;

			opts = $.extend({}, settings);



			_start();



			return false;

		};



		function _start() {

			if (busy) return;



			if ($.isFunction(opts.callbackOnStart)) {

				opts.callbackOnStart();

			}



			opts.itemArray		= [];

			opts.itemCurrent	= 0;



			if (settings.itemArray.length > 0) {

				opts.itemArray = settings.itemArray;



			} else {

				var item = {};



				if (!elem.rel || elem.rel == '') {

					var item = {href: elem.href, title: elem.title};



					if ($(elem).children("img:first").length) {

						item.orig = $(elem).children("img:first");

					} else {

						item.orig = $(elem);

					}



					if (item.title == '' || typeof item.title == 'undefined') {

						item.title = item.orig.attr('alt');

					}

					

					opts.itemArray.push( item );



				} else {

					var subGroup = $(matchedGroup).filter("a[rel=" + elem.rel + "]");

					var item = {};



					for (var i = 0; i < subGroup.length; i++) {

						item = {href: subGroup[i].href, title: subGroup[i].title};



						if ($(subGroup[i]).children("img:first").length) {

							item.orig = $(subGroup[i]).children("img:first");

						} else {

							item.orig = $(subGroup[i]);

						}



						if (item.title == '' || typeof item.title == 'undefined') {

							item.title = item.orig.attr('alt');

						}



						opts.itemArray.push( item );

					}

				}

			}



			while ( opts.itemArray[ opts.itemCurrent ].href != elem.href ) {

				opts.itemCurrent++;

			}



			if (opts.overlayShow) {

				if (IE6) {

					$('embed, object, select').css('visibility', 'hidden');

					$("#fancy_overlay").css('height', $(document).height());

				}



				$("#fancy_overlay").css({

					'background-color'	: opts.overlayColor,

					'opacity'			: opts.overlayOpacity

				}).show();

			}

			

			$(window).bind("resize.fb scroll.fb", $.fn.fancybox.scrollBox);



			_change_item();

		};



		function _change_item() {

			$("#fancy_right, #fancy_left, #fancy_close, #fancy_title").hide();



			var href = opts.itemArray[ opts.itemCurrent ].href;



			if (href.match("iframe") || elem.className.indexOf("iframe") >= 0) {

				$.fn.fancybox.showLoading();

				_set_content('<iframe id="fancy_frame" onload="jQuery.fn.fancybox.showIframe()" name="fancy_iframe' + Math.round(Math.random()*1000) + '" frameborder="0" hspace="0" src="' + href + '"></iframe>', opts.frameWidth, opts.frameHeight);



			} else if (href.match(/#/)) {

				var target = window.location.href.split('#')[0]; target = href.replace(target, ''); target = target.substr(target.indexOf('#'));



				_set_content('<div id="fancy_div">' + $(target).html() + '</div>', opts.frameWidth, opts.frameHeight);



			} else if (href.match(imageRegExp)) {

				imagePreloader = new Image; imagePreloader.src = href;



				if (imagePreloader.complete) {

					_proceed_image();



				} else {

					$.fn.fancybox.showLoading();

					$(imagePreloader).unbind().bind('load', function() {

						$("#fancy_loading").hide();



						_proceed_image();

					});

				}

			} else {

				$.fn.fancybox.showLoading();

				$.get(href, function(data) {

					$("#fancy_loading").hide();

					_set_content( '<div id="fancy_ajax">' + data + '</div>', opts.frameWidth, opts.frameHeight );

				});

			}

		};



		function _proceed_image() {

			var width	= imagePreloader.width;

			var height	= imagePreloader.height;



			var horizontal_space	= (opts.padding * 2) + 40;

			var vertical_space		= (opts.padding * 2) + 60;



			var w = $.fn.fancybox.getViewport();

			

			if (opts.imageScale && (width > (w[0] - horizontal_space) || height > (w[1] - vertical_space))) {

				var ratio = Math.min(Math.min(w[0] - horizontal_space, width) / width, Math.min(w[1] - vertical_space, height) / height);



				width	= Math.round(ratio * width);

				height	= Math.round(ratio * height);

			}



			_set_content('<img alt="" id="fancy_img" src="' + imagePreloader.src + '" />', width, height);

		};



		function _preload_neighbor_images() {

			if ((opts.itemArray.length -1) > opts.itemCurrent) {

				var href = opts.itemArray[opts.itemCurrent + 1].href || false;



				if (href && href.match(imageRegExp)) {

					objNext = new Image();

					objNext.src = href;

				}

			}



			if (opts.itemCurrent > 0) {

				var href = opts.itemArray[opts.itemCurrent -1].href || false;



				if (href && href.match(imageRegExp)) {

					objNext = new Image();

					objNext.src = href;

				}

			}

		};



		function _set_content(value, width, height) {

			busy = true;



			var pad = opts.padding;



			if (oldIE || ieQuirks) {

				$("#fancy_content")[0].style.removeExpression("height");

				$("#fancy_content")[0].style.removeExpression("width");

			}



			if (pad > 0) {

				width	+= pad * 2;

				height	+= pad * 2;



				$("#fancy_content").css({

					'top'		: pad + 'px',

					'right'		: pad + 'px',

					'bottom'	: pad + 'px',

					'left'		: pad + 'px',

					'width'		: 'auto',

					'height'	: 'auto'

				});



				if (oldIE || ieQuirks) {

					$("#fancy_content")[0].style.setExpression('height',	'(this.parentNode.clientHeight - '	+ pad * 2 + ')');

					$("#fancy_content")[0].style.setExpression('width',		'(this.parentNode.clientWidth - '	+ pad * 2 + ')');

				}

			} else {

				$("#fancy_content").css({

					'top'		: 0,

					'right'		: 0,

					'bottom'	: 0,

					'left'		: 0,

					'width'		: '100%',

					'height'	: '100%'

				});

			}



			if ($("#fancy_outer").is(":visible") && width == $("#fancy_outer").width() && height == $("#fancy_outer").height()) {

				$("#fancy_content").fadeOut('fast', function() {

					$("#fancy_content").empty().append($(value)).fadeIn("normal", function() {

						_finish();

					});

				});



				return;

			}



			var w = $.fn.fancybox.getViewport();



			var itemTop		= (height	+ 60) > w[1] ? w[3] : (w[3] + Math.round((w[1] - height	- 60) * 0.5));

			var itemLeft	= (width	+ 40) > w[0] ? w[2] : (w[2] + Math.round((w[0] - width	- 40) * 0.5));



			var itemOpts = {

				'left':		itemLeft,

				'top':		itemTop,

				'width':	width + 'px',

				'height':	height + 'px'

			};



			if ($("#fancy_outer").is(":visible")) {

				$("#fancy_content").fadeOut("normal", function() {

					$("#fancy_content").empty();

					$("#fancy_outer").animate(itemOpts, opts.zoomSpeedChange, opts.easingChange, function() {

						$("#fancy_content").append($(value)).fadeIn("normal", function() {

							_finish();

						});

					});

				});



			} else {



				if (opts.zoomSpeedIn > 0 && opts.itemArray[opts.itemCurrent].orig !== undefined) {

					$("#fancy_content").empty().append($(value));



					var orig_item	= opts.itemArray[opts.itemCurrent].orig;

					var orig_pos	= $.fn.fancybox.getPosition(orig_item);



					$("#fancy_outer").css({

						'left':		(orig_pos.left	- 20 - opts.padding) + 'px',

						'top':		(orig_pos.top	- 20 - opts.padding) + 'px',

						'width':	$(orig_item).width() + (opts.padding * 2),

						'height':	$(orig_item).height() + (opts.padding * 2)

					});



					if (opts.zoomOpacity) {

						itemOpts.opacity = 'show';

					}



					$("#fancy_outer").animate(itemOpts, opts.zoomSpeedIn, opts.easingIn, function() {

						_finish();

					});



				} else {



					$("#fancy_content").hide().empty().append($(value)).show();

					$("#fancy_outer").css(itemOpts).fadeIn("normal", function() {

						_finish();

					});

				}

			}

		};



		function _set_navigation() {

			if (opts.itemCurrent !== 0) {

				$("#fancy_left, #fancy_left_ico").unbind().bind("click", function(e) {

					e.stopPropagation();



					opts.itemCurrent--;

					_change_item();



					return false;

				});



				$("#fancy_left").show();

			}



			if (opts.itemCurrent != ( opts.itemArray.length -1)) {

				$("#fancy_right, #fancy_right_ico").unbind().bind("click", function(e) {

					e.stopPropagation();



					opts.itemCurrent++;

					_change_item();



					return false;

				});



				$("#fancy_right").show();

			}

		};



		function _finish() {

			if ($.browser.msie) {

				$("#fancy_content")[0].style.removeAttribute('filter');

				$("#fancy_outer")[0].style.removeAttribute('filter');

			}



			_set_navigation();



			_preload_neighbor_images();



			$(document).bind("keydown.fb", function(e) {

				if (e.keyCode == 27 && opts.enableEscapeButton) {

					$.fn.fancybox.close();



				} else if(e.keyCode == 37 && opts.itemCurrent !== 0) {

					$(document).unbind("keydown.fb");

					opts.itemCurrent--;

					_change_item();

					



				} else if(e.keyCode == 39 && opts.itemCurrent != (opts.itemArray.length - 1)) {

					$(document).unbind("keydown.fb");

					opts.itemCurrent++;

					_change_item();

				}

			});



			if (opts.hideOnContentClick) {

				$("#fancy_content").click($.fn.fancybox.close);

			}



			if (opts.overlayShow && opts.hideOnOverlayClick) {

				$("#fancy_overlay").bind("click", $.fn.fancybox.close);

			}



			if (opts.showCloseButton) {

				$("#fancy_close").bind("click", $.fn.fancybox.close).show();

			}



			if (typeof opts.itemArray[ opts.itemCurrent ].title !== 'undefined' && opts.itemArray[ opts.itemCurrent ].title.length > 0) {

				var pos = $("#fancy_outer").position();



				$('#fancy_title div').text( opts.itemArray[ opts.itemCurrent ].title).html();



				$('#fancy_title').css({

					'top'	: pos.top + $("#fancy_outer").outerHeight() - 32,

					'left'	: pos.left + (($("#fancy_outer").outerWidth() * 0.5) - ($('#fancy_title').width() * 0.5))

				}).show();

			}



			if (opts.overlayShow && IE6) {

				$('embed, object, select', $('#fancy_content')).css('visibility', 'visible');

			}



			if ($.isFunction(opts.callbackOnShow)) {

				opts.callbackOnShow( opts.itemArray[ opts.itemCurrent ] );

			}



			if ($.browser.msie) {

				$("#fancy_outer")[0].style.removeAttribute('filter'); 

				$("#fancy_content")[0].style.removeAttribute('filter'); 

			}

			

			busy = false;

		};



		return this.unbind('click.fb').bind('click.fb', _initialize);

	};



	$.fn.fancybox.scrollBox = function() {

		var w = $.fn.fancybox.getViewport();

		

		if (opts.centerOnScroll && $("#fancy_outer").is(':visible')) {

			var ow	= $("#fancy_outer").outerWidth();

			var oh	= $("#fancy_outer").outerHeight();



			var pos	= {

				'top'	: (oh > w[1] ? w[3] : w[3] + Math.round((w[1] - oh) * 0.5)),

				'left'	: (ow > w[0] ? w[2] : w[2] + Math.round((w[0] - ow) * 0.5))

			};



			$("#fancy_outer").css(pos);



			$('#fancy_title').css({

				'top'	: pos.top	+ oh - 32,

				'left'	: pos.left	+ ((ow * 0.5) - ($('#fancy_title').width() * 0.5))

			});

		}

		

		if (IE6 && $("#fancy_overlay").is(':visible')) {

			$("#fancy_overlay").css({

				'height' : $(document).height()

			});

		}

		

		if ($("#fancy_loading").is(':visible')) {

			$("#fancy_loading").css({'left': ((w[0] - 40) * 0.5 + w[2]), 'top': ((w[1] - 40) * 0.5 + w[3])});

		}

	};



	$.fn.fancybox.getNumeric = function(el, prop) {

		return parseInt($.curCSS(el.jquery?el[0]:el,prop,true))||0;

	};


	$.fn.fancybox.getPosition = function(el) {

		var pos = el.offset();



		pos.top	+= $.fn.fancybox.getNumeric(el, 'paddingTop');

		pos.top	+= $.fn.fancybox.getNumeric(el, 'borderTopWidth');



		pos.left += $.fn.fancybox.getNumeric(el, 'paddingLeft');

		pos.left += $.fn.fancybox.getNumeric(el, 'borderLeftWidth');



		return pos;

	};



	$.fn.fancybox.showIframe = function() {

		$("#fancy_loading").hide();

		$("#fancy_frame").show();

	};



	$.fn.fancybox.getViewport = function() {

		return [$(window).width(), $(window).height(), $(document).scrollLeft(), $(document).scrollTop() ];

	};



	$.fn.fancybox.animateLoading = function() {

		if (!$("#fancy_loading").is(':visible')){

			clearInterval(loadingTimer);

			return;

		}



		$("#fancy_loading > div").css('top', (loadingFrame * -40) + 'px');



		loadingFrame = (loadingFrame + 1) % 12;

	};



	$.fn.fancybox.showLoading = function() {

		clearInterval(loadingTimer);



		var w = $.fn.fancybox.getViewport();



		$("#fancy_loading").css({'left': ((w[0] - 40) * 0.5 + w[2]), 'top': ((w[1] - 40) * 0.5 + w[3])}).show();

		$("#fancy_loading").bind('click', $.fn.fancybox.close);



		loadingTimer = setInterval($.fn.fancybox.animateLoading, 66);

	};



	$.fn.fancybox.close = function() {

		busy = true;



		$(imagePreloader).unbind();



		$(document).unbind("keydown.fb");

		$(window).unbind("resize.fb scroll.fb");



		$("#fancy_overlay, #fancy_content, #fancy_close").unbind();



		$("#fancy_close, #fancy_loading, #fancy_left, #fancy_right, #fancy_title").hide();



		__cleanup = function() {

			if ($("#fancy_overlay").is(':visible')) {

				$("#fancy_overlay").fadeOut("fast");

			}



			$("#fancy_content").empty();

			

			if (opts.centerOnScroll) {

				$(window).unbind("resize.fb scroll.fb");

			}



			if (IE6) {

				$('embed, object, select').css('visibility', 'visible');

			}



			if ($.isFunction(opts.callbackOnClose)) {

				opts.callbackOnClose();

			}



			busy = false;

		};



		if ($("#fancy_outer").is(":visible") !== false) {

			if (opts.zoomSpeedOut > 0 && opts.itemArray[opts.itemCurrent].orig !== undefined) {

				var orig_item	= opts.itemArray[opts.itemCurrent].orig;

				var orig_pos	= $.fn.fancybox.getPosition(orig_item);



				var itemOpts = {

					'left':		(orig_pos.left	- 20 - opts.padding) + 'px',

					'top': 		(orig_pos.top	- 20 - opts.padding) + 'px',

					'width':	$(orig_item).width() + (opts.padding * 2),

					'height':	$(orig_item).height() + (opts.padding * 2)

				};



				if (opts.zoomOpacity) {

					itemOpts.opacity = 'hide';

				}



				$("#fancy_outer").stop(false, true).animate(itemOpts, opts.zoomSpeedOut, opts.easingOut, __cleanup);



			} else {

				$("#fancy_outer").stop(false, true).fadeOut('fast', __cleanup);

			}



		} else {

			__cleanup();

		}



		return false;

	};



	$.fn.fancybox.build = function() {

		var html = '';



		html += '<div id="fancy_overlay"></div>';

		html += '<div id="fancy_loading"><div></div></div>';



		html += '<div id="fancy_outer">';

		html += '<div id="fancy_inner">';



		html += '<div id="fancy_close"></div>';



		html += '<div id="fancy_bg"><div class="fancy_bg" id="fancy_bg_n"></div><div class="fancy_bg" id="fancy_bg_ne"></div><div class="fancy_bg" id="fancy_bg_e"></div><div class="fancy_bg" id="fancy_bg_se"></div><div class="fancy_bg" id="fancy_bg_s"></div><div class="fancy_bg" id="fancy_bg_sw"></div><div class="fancy_bg" id="fancy_bg_w"></div><div class="fancy_bg" id="fancy_bg_nw"></div></div>';



		html += '<a href="javascript:;" id="fancy_left"><span class="fancy_ico" id="fancy_left_ico"></span></a><a href="javascript:;" id="fancy_right"><span class="fancy_ico" id="fancy_right_ico"></span></a>';



		html += '<div id="fancy_content"></div>';



		html += '</div>';

		html += '</div>';

		

		html += '<div id="fancy_title"></div>';

		

		$(html).appendTo("body");



		$('<table cellspacing="0" cellpadding="0" border="0"><tr><td class="fancy_title" id="fancy_title_left"></td><td class="fancy_title" id="fancy_title_main"><div></div></td><td class="fancy_title" id="fancy_title_right"></td></tr></table>').appendTo('#fancy_title');



		if ($.browser.msie) {

			$(".fancy_bg").fixPNG();

		}



		if (IE6) {

			$("div#fancy_overlay").css("position", "absolute");

			$("#fancy_loading div, #fancy_close, .fancy_title, .fancy_ico").fixPNG();



			$("#fancy_inner").prepend('<iframe id="fancy_bigIframe" src="javascript:false;" scrolling="no" frameborder="0"></iframe>');



			// Get rid of the 'false' text introduced by the URL of the iframe

			var frameDoc = $('#fancy_bigIframe')[0].contentWindow.document;

			frameDoc.open();

			frameDoc.close();

			

		}

	};



	$.fn.fancybox.defaults = {

		padding				:	10,

		imageScale			:	true,

		zoomOpacity			:	true,

		zoomSpeedIn			:	0,

		zoomSpeedOut		:	0,

		zoomSpeedChange		:	300,

		easingIn			:	'swing',

		easingOut			:	'swing',

		easingChange		:	'swing',

		frameWidth			:	560,

		frameHeight			:	340,

		overlayShow			:	true,

		overlayOpacity		:	0.3,

		overlayColor		:	'#666',

		enableEscapeButton	:	true,

		showCloseButton		:	true,

		hideOnOverlayClick	:	true,

		hideOnContentClick	:	true,

		centerOnScroll		:	true,

		itemArray			:	[],

		callbackOnStart		:	null,

		callbackOnShow		:	null,

		callbackOnClose		:	null

	};



	$(document).ready(function() {

		ieQuirks = $.browser.msie && !$.boxModel;



		if ($("#fancy_outer").length < 1) {

			$.fn.fancybox.build();

		}

	});



})(jQuery);
