﻿/**
* jQuery lightBox plugin
* This jQuery plugin was inspired and based on Lightbox 2 by Lokesh Dhakar (http://www.huddletogether.com/projects/lightbox2/)
* and adapted to me for use like a plugin from jQuery.
* @name jquery-lightbox-0.5.js
* @author Leandro Vieira Pinho - http://leandrovieira.com
* @version 0.5
* @date April 11, 2008
* @category jQuery plugin
* @copyright (c) 2008 Leandro Vieira Pinho (leandrovieira.com)
* @license CC Attribution-No Derivative Works 2.5 Brazil - http://creativecommons.org/licenses/by-nd/2.5/br/deed.en_US
* @example Visit http://leandrovieira.com/projects/jquery/lightbox/ for more informations about this jQuery plugin
*/
(function ($) {
  $.fn.lightBox = function (settings) {
    settings = jQuery.extend({ overlayBgColor: '#000', overlayOpacity: 0.8, fixedNavigation: false, imageLoading: '/catalogo/img/lightbox-ico-loading.gif', imageBtnPrev: '/catalogo/img/lightbox-btn-prev.gif', imageBtnNext: '/catalogo/img/lightbox-btn-next.gif', imageBtnClose: '/catalogo/img/lightbox-btn-close.gif', imageBlank: '/catalogo/img/lightbox-blank.gif', containerBorderSize: 10, containerResizeSpeed: 400, txtImage: 'Foto', txtOf: 'de', keyToClose: 'c', keyToPrev: 'p', keyToNext: 'n', imageArray: [], activeImage: 0 }, settings); var jQueryMatchedObj = this; function _initialize() { _start(this, jQueryMatchedObj); return false; }
    function _start(objClicked, jQueryMatchedObj) {
      $('embed, object, select').css({ 'visibility': 'hidden' }); _set_interface(); settings.imageArray.length = 0; settings.activeImage = 0; if (jQueryMatchedObj.length == 1) { settings.imageArray.push(new Array(objClicked.getAttribute('href'), objClicked.getAttribute('title'))); } else { for (var i = 0; i < jQueryMatchedObj.length; i++) { settings.imageArray.push(new Array(jQueryMatchedObj[i].getAttribute('href'), jQueryMatchedObj[i].getAttribute('title'))); } }
      while (settings.imageArray[settings.activeImage][0] != objClicked.getAttribute('href')) { settings.activeImage++; }
      _set_image_to_view();
    }
    function _set_interface() { $('body').append('<div id="jquery-overlay"></div><div id="jquery-lightbox"><div id="lightbox-container-image-box"><div id="lightbox-container-image"><img id="lightbox-image"><div style="" id="lightbox-nav"><a href="#" id="lightbox-nav-btnPrev"></a><a href="#" id="lightbox-nav-btnNext"></a></div><div id="lightbox-loading"><a href="#" id="lightbox-loading-link"><img src="' + settings.imageLoading + '"></a></div></div></div><div id="lightbox-container-image-data-box"><div id="lightbox-container-image-data"><div id="lightbox-image-details"><span id="lightbox-image-details-caption"></span><span id="lightbox-image-details-currentNumber"></span></div><div id="lightbox-secNav"><a href="#" id="lightbox-secNav-btnClose"><img src="' + settings.imageBtnClose + '"></a></div></div></div></div>'); var arrPageSizes = ___getPageSize(); $('#jquery-overlay').css({ backgroundColor: settings.overlayBgColor, opacity: settings.overlayOpacity, width: arrPageSizes[0], height: arrPageSizes[1] }).fadeIn(); var arrPageScroll = ___getPageScroll(); $('#jquery-lightbox').css({ top: arrPageScroll[1] + (arrPageSizes[3] / 10), left: arrPageScroll[0] }).show(); $('#jquery-overlay,#jquery-lightbox').click(function () { _finish(); }); $('#lightbox-loading-link,#lightbox-secNav-btnClose').click(function () { _finish(); return false; }); $(window).resize(function () { var arrPageSizes = ___getPageSize(); $('#jquery-overlay').css({ width: arrPageSizes[0], height: arrPageSizes[1] }); var arrPageScroll = ___getPageScroll(); $('#jquery-lightbox').css({ top: arrPageScroll[1] + (arrPageSizes[3] / 10), left: arrPageScroll[0] }); }); }
    function _set_image_to_view() {
      $('#lightbox-loading').show(); if (settings.fixedNavigation) { $('#lightbox-image,#lightbox-container-image-data-box,#lightbox-image-details-currentNumber').hide(); } else { $('#lightbox-image,#lightbox-nav,#lightbox-nav-btnPrev,#lightbox-nav-btnNext,#lightbox-container-image-data-box,#lightbox-image-details-currentNumber').hide(); }
      var objImagePreloader = new Image(); objImagePreloader.onload = function () { $('#lightbox-image').attr('src', settings.imageArray[settings.activeImage][0]); _resize_container_image_box(objImagePreloader.width, objImagePreloader.height); objImagePreloader.onload = function () { }; }; objImagePreloader.src = settings.imageArray[settings.activeImage][0];
    }; function _resize_container_image_box(intImageWidth, intImageHeight) {
      var intCurrentWidth = $('#lightbox-container-image-box').width(); var intCurrentHeight = $('#lightbox-container-image-box').height(); var intWidth = (intImageWidth + (settings.containerBorderSize * 2)); var intHeight = (intImageHeight + (settings.containerBorderSize * 2)); var intDiffW = intCurrentWidth - intWidth; var intDiffH = intCurrentHeight - intHeight; $('#lightbox-container-image-box').animate({ width: intWidth, height: intHeight }, settings.containerResizeSpeed, function () { _show_image(); }); if ((intDiffW == 0) && (intDiffH == 0)) { if ($.browser.msie) { ___pause(250); } else { ___pause(100); } }
      $('#lightbox-container-image-data-box').css({ width: intImageWidth }); $('#lightbox-nav-btnPrev,#lightbox-nav-btnNext').css({ height: intImageHeight + (settings.containerBorderSize * 2) });
    }; function _show_image() { $('#lightbox-loading').hide(); $('#lightbox-image').fadeIn(function () { _show_image_data(); _set_navigation(); }); _preload_neighbor_images(); }; function _show_image_data() {
      $('#lightbox-container-image-data-box').slideDown('fast'); $('#lightbox-image-details-caption').hide(); if (settings.imageArray[settings.activeImage][1]) { $('#lightbox-image-details-caption').html(settings.imageArray[settings.activeImage][1]).show(); }
      if (settings.imageArray.length > 1) { $('#lightbox-image-details-currentNumber').html(settings.txtImage + ' ' + (settings.activeImage + 1) + ' ' + settings.txtOf + ' ' + settings.imageArray.length).show(); } 
    }
    function _set_navigation() {
      $('#lightbox-nav').show(); $('#lightbox-nav-btnPrev,#lightbox-nav-btnNext').css({ 'background': 'transparent url(' + settings.imageBlank + ') no-repeat' }); if (settings.activeImage != 0) { if (settings.fixedNavigation) { $('#lightbox-nav-btnPrev').css({ 'background': 'url(' + settings.imageBtnPrev + ') left 15% no-repeat' }).unbind().bind('click', function () { settings.activeImage = settings.activeImage - 1; _set_image_to_view(); return false; }); } else { $('#lightbox-nav-btnPrev').unbind().hover(function () { $(this).css({ 'background': 'url(' + settings.imageBtnPrev + ') left 15% no-repeat' }); }, function () { $(this).css({ 'background': 'transparent url(' + settings.imageBlank + ') no-repeat' }); }).show().bind('click', function () { settings.activeImage = settings.activeImage - 1; _set_image_to_view(); return false; }); } }
      if (settings.activeImage != (settings.imageArray.length - 1)) { if (settings.fixedNavigation) { $('#lightbox-nav-btnNext').css({ 'background': 'url(' + settings.imageBtnNext + ') right 15% no-repeat' }).unbind().bind('click', function () { settings.activeImage = settings.activeImage + 1; _set_image_to_view(); return false; }); } else { $('#lightbox-nav-btnNext').unbind().hover(function () { $(this).css({ 'background': 'url(' + settings.imageBtnNext + ') right 15% no-repeat' }); }, function () { $(this).css({ 'background': 'transparent url(' + settings.imageBlank + ') no-repeat' }); }).show().bind('click', function () { settings.activeImage = settings.activeImage + 1; _set_image_to_view(); return false; }); } }
      _enable_keyboard_navigation();
    }
    function _enable_keyboard_navigation() { $(document).keydown(function (objEvent) { _keyboard_action(objEvent); }); }
    function _disable_keyboard_navigation() { $(document).unbind(); }
    function _keyboard_action(objEvent) {
      if (objEvent == null) { keycode = event.keyCode; escapeKey = 27; } else { keycode = objEvent.keyCode; escapeKey = objEvent.DOM_VK_ESCAPE; }
      key = String.fromCharCode(keycode).toLowerCase(); if ((key == settings.keyToClose) || (key == 'x') || (keycode == escapeKey)) { _finish(); }
      if ((key == settings.keyToPrev) || (keycode == 37)) { if (settings.activeImage != 0) { settings.activeImage = settings.activeImage - 1; _set_image_to_view(); _disable_keyboard_navigation(); } }
      if ((key == settings.keyToNext) || (keycode == 39)) { if (settings.activeImage != (settings.imageArray.length - 1)) { settings.activeImage = settings.activeImage + 1; _set_image_to_view(); _disable_keyboard_navigation(); } } 
    }
    function _preload_neighbor_images() {
      if ((settings.imageArray.length - 1) > settings.activeImage) { objNext = new Image(); objNext.src = settings.imageArray[settings.activeImage + 1][0]; }
      if (settings.activeImage > 0) { objPrev = new Image(); objPrev.src = settings.imageArray[settings.activeImage - 1][0]; } 
    }
    function _finish() { $('#jquery-lightbox').remove(); $('#jquery-overlay').fadeOut(function () { $('#jquery-overlay').remove(); }); $('embed, object, select').css({ 'visibility': 'visible' }); }
    function ___getPageSize() {
      var xScroll, yScroll; if (window.innerHeight && window.scrollMaxY) { xScroll = window.innerWidth + window.scrollMaxX; yScroll = window.innerHeight + window.scrollMaxY; } else if (document.body.scrollHeight > document.body.offsetHeight) { xScroll = document.body.scrollWidth; yScroll = document.body.scrollHeight; } else { xScroll = document.body.offsetWidth; yScroll = document.body.offsetHeight; }
      var windowWidth, windowHeight; if (self.innerHeight) {
        if (document.documentElement.clientWidth) { windowWidth = document.documentElement.clientWidth; } else { windowWidth = self.innerWidth; }
        windowHeight = self.innerHeight;
      } else if (document.documentElement && document.documentElement.clientHeight) { windowWidth = document.documentElement.clientWidth; windowHeight = document.documentElement.clientHeight; } else if (document.body) { windowWidth = document.body.clientWidth; windowHeight = document.body.clientHeight; }
      if (yScroll < windowHeight) { pageHeight = windowHeight; } else { pageHeight = yScroll; }
      if (xScroll < windowWidth) { pageWidth = xScroll; } else { pageWidth = windowWidth; }
      arrayPageSize = new Array(pageWidth, pageHeight, windowWidth, windowHeight); return arrayPageSize;
    }; function ___getPageScroll() {
      var xScroll, yScroll; if (self.pageYOffset) { yScroll = self.pageYOffset; xScroll = self.pageXOffset; } else if (document.documentElement && document.documentElement.scrollTop) { yScroll = document.documentElement.scrollTop; xScroll = document.documentElement.scrollLeft; } else if (document.body) { yScroll = document.body.scrollTop; xScroll = document.body.scrollLeft; }
      arrayPageScroll = new Array(xScroll, yScroll); return arrayPageScroll;
    }; function ___pause(ms) {
      var date = new Date(); curDate = null; do { var curDate = new Date(); }
      while (curDate - date < ms);
    }; return this.unbind('click').click(_initialize);
  };
})(jQuery);

(function ($) { $.fn.jqueryzoom = function (options) { var settings = { xzoom: 475, yzoom: 323, offset: 10, position: "right", lens: 2, preload: 1 }; if (options) { $.extend(settings, options) } var noalt = ''; $(this).hover(function () { var imageLeft = $(this).offset().left; var imageTop = $(this).offset().top; var imageWidth = $(this).children('img').get(0).offsetWidth; var imageHeight = $(this).children('img').get(0).offsetHeight; noalt = $(this).children("img").attr("alt"); var bigimage = $(this).children("img").attr("jqimg"); $(this).children("img").attr("alt", ''); if ($("div.zoomdiv").get().length == 0) { $(this).after("<div class='zoomdiv'><img class='bigimg' src='" + bigimage + "'/></div>"); $(this).append("<div class='jqZoomPup'>&nbsp;</div>") } if (settings.position == "right") { if (imageLeft + imageWidth + settings.offset + settings.xzoom > screen.width) { leftpos = imageLeft - settings.offset - settings.xzoom } else { leftpos = imageLeft + imageWidth + settings.offset } } else { leftpos = imageLeft - settings.xzoom - settings.offset; if (leftpos < 0) { leftpos = imageLeft + imageWidth + settings.offset } } $("div.zoomdiv").css({ top: imageTop, left: leftpos }); $("div.zoomdiv").width(settings.xzoom); $("div.zoomdiv").height(settings.yzoom); $("div.zoomdiv").show(); if (!settings.lens) { $(this).css('cursor', 'crosshair') } $(document.body).mousemove(function (e) { mouse = new MouseEvent(e); var bigwidth = $(".bigimg").get(0).offsetWidth; var bigheight = $(".bigimg").get(0).offsetHeight; var scaley = 'x'; var scalex = 'y'; if (isNaN(scalex) | isNaN(scaley)) { var scalex = (bigwidth / imageWidth); var scaley = (bigheight / imageHeight); $("div.jqZoomPup").width((settings.xzoom) / scalex); $("div.jqZoomPup").height((settings.yzoom) / scaley); if (settings.lens) { $("div.jqZoomPup").css('visibility', 'visible') } } xpos = mouse.x - $("div.jqZoomPup").width() / 2 - imageLeft; ypos = mouse.y - $("div.jqZoomPup").height() / 2 - imageTop; if (settings.lens) { xpos = (mouse.x - $("div.jqZoomPup").width() / 2 < imageLeft) ? 0 : (mouse.x + $("div.jqZoomPup").width() / 2 > imageWidth + imageLeft) ? (imageWidth - $("div.jqZoomPup").width() - 2) : xpos; ypos = (mouse.y - $("div.jqZoomPup").height() / 2 < imageTop) ? 0 : (mouse.y + $("div.jqZoomPup").height() / 2 > imageHeight + imageTop) ? (imageHeight - $("div.jqZoomPup").height() - 2) : ypos } if (settings.lens) { $("div.jqZoomPup").css({ top: ypos, left: xpos }) } scrolly = ypos; $("div.zoomdiv").get(0).scrollTop = scrolly * scaley; scrollx = xpos; $("div.zoomdiv").get(0).scrollLeft = (scrollx) * scalex }) }, function () { $(this).children("img").attr("alt", noalt); $(document.body).unbind("mousemove"); if (settings.lens) { $("div.jqZoomPup").remove() } $("div.zoomdiv").remove() }); count = 0; if (settings.preload) { $('body').append("<div style='display:none;' class='jqPreload" + count + "'>sdsdssdsd</div>"); $(this).each(function () { var imagetopreload = $(this).children("img").attr("jqimg"); var content = jQuery('div.jqPreload' + count + '').html(); jQuery('div.jqPreload' + count + '').html(content + '<img src=\"' + imagetopreload + '\">') }) } } })(jQuery); function MouseEvent(e) { this.x = e.pageX; this.y = e.pageY }

/*!
* jCarousel - Riding carousels with jQuery
*   http://sorgalla.com/jcarousel/
*
* Copyright (c) 2006 Jan Sorgalla (http://sorgalla.com)
* Dual licensed under the MIT (http://www.opensource.org/licenses/mit-license.php)
* and GPL (http://www.opensource.org/licenses/gpl-license.php) licenses.
*
* Built on top of the jQuery library
*   http://jquery.com
*
* Inspired by the "Carousel Component" by Bill Scott
*   http://billwscott.com/carousel/
*/

(function (g) { var q = { vertical: !1, rtl: !1, start: 1, offset: 1, size: null, scroll: 3, visible: null, animation: "normal", easing: "swing", auto: 0, wrap: null, initCallback: null, setupCallback: null, reloadCallback: null, itemLoadCallback: null, itemFirstInCallback: null, itemFirstOutCallback: null, itemLastInCallback: null, itemLastOutCallback: null, itemVisibleInCallback: null, itemVisibleOutCallback: null, animationStepCallback: null, buttonNextHTML: "<div></div>", buttonPrevHTML: "<div></div>", buttonNextEvent: "click", buttonPrevEvent: "click", buttonNextCallback: null, buttonPrevCallback: null, itemFallbackDimension: null }, m = !1; g(window).bind("load.jcarousel", function () { m = !0 }); g.jcarousel = function (a, c) { this.options = g.extend({}, q, c || {}); this.autoStopped = this.locked = !1; this.buttonPrevState = this.buttonNextState = this.buttonPrev = this.buttonNext = this.list = this.clip = this.container = null; if (!c || c.rtl === void 0) this.options.rtl = (g(a).attr("dir") || g("html").attr("dir") || "").toLowerCase() == "rtl"; this.wh = !this.options.vertical ? "width" : "height"; this.lt = !this.options.vertical ? this.options.rtl ? "right" : "left" : "top"; for (var b = "", d = a.className.split(" "), f = 0; f < d.length; f++) if (d[f].indexOf("jcarousel-skin") != -1) { g(a).removeClass(d[f]); b = d[f]; break } a.nodeName.toUpperCase() == "UL" || a.nodeName.toUpperCase() == "OL" ? (this.list = g(a), this.clip = this.list.parents(".jcarousel-clip"), this.container = this.list.parents(".jcarousel-container")) : (this.container = g(a), this.list = this.container.find("ul,ol").eq(0), this.clip = this.container.find(".jcarousel-clip")); if (this.clip.size() === 0) this.clip = this.list.wrap("<div></div>").parent(); if (this.container.size() === 0) this.container = this.clip.wrap("<div></div>").parent(); b !== "" && this.container.parent()[0].className.indexOf("jcarousel-skin") == -1 && this.container.wrap('<div class=" ' + b + '"></div>'); this.buttonPrev = g(".jcarousel-prev", this.container); if (this.buttonPrev.size() === 0 && this.options.buttonPrevHTML !== null) this.buttonPrev = g(this.options.buttonPrevHTML).appendTo(this.container); this.buttonPrev.addClass(this.className("jcarousel-prev")); this.buttonNext = g(".jcarousel-next", this.container); if (this.buttonNext.size() === 0 && this.options.buttonNextHTML !== null) this.buttonNext = g(this.options.buttonNextHTML).appendTo(this.container); this.buttonNext.addClass(this.className("jcarousel-next")); this.clip.addClass(this.className("jcarousel-clip")).css({ position: "relative" }); this.list.addClass(this.className("jcarousel-list")).css({ overflow: "hidden", position: "relative", top: 0, margin: 0, padding: 0 }).css(this.options.rtl ? "right" : "left", 0); this.container.addClass(this.className("jcarousel-container")).css({ position: "relative" }); !this.options.vertical && this.options.rtl && this.container.addClass("jcarousel-direction-rtl").attr("dir", "rtl"); var j = this.options.visible !== null ? Math.ceil(this.clipping() / this.options.visible) : null, b = this.list.children("li"), e = this; if (b.size() > 0) { var h = 0, i = this.options.offset; b.each(function () { e.format(this, i++); h += e.dimension(this, j) }); this.list.css(this.wh, h + 100 + "px"); if (!c || c.size === void 0) this.options.size = b.size() } this.container.css("display", "block"); this.buttonNext.css("display", "block"); this.buttonPrev.css("display", "block"); this.funcNext = function () { e.next() }; this.funcPrev = function () { e.prev() }; this.funcResize = function () { e.resizeTimer && clearTimeout(e.resizeTimer); e.resizeTimer = setTimeout(function () { e.reload() }, 100) }; this.options.initCallback !== null && this.options.initCallback(this, "init"); !m && g.browser.safari ? (this.buttons(!1, !1), g(window).bind("load.jcarousel", function () { e.setup() })) : this.setup() }; var f = g.jcarousel; f.fn = f.prototype = { jcarousel: "0.2.8" }; f.fn.extend = f.extend = g.extend; f.fn.extend({ setup: function () { this.prevLast = this.prevFirst = this.last = this.first = null; this.animating = !1; this.tail = this.resizeTimer = this.timer = null; this.inTail = !1; if (!this.locked) { this.list.css(this.lt, this.pos(this.options.offset) + "px"); var a = this.pos(this.options.start, !0); this.prevFirst = this.prevLast = null; this.animate(a, !1); g(window).unbind("resize.jcarousel", this.funcResize).bind("resize.jcarousel", this.funcResize); this.options.setupCallback !== null && this.options.setupCallback(this) } }, reset: function () { this.list.empty(); this.list.css(this.lt, "0px"); this.list.css(this.wh, "10px"); this.options.initCallback !== null && this.options.initCallback(this, "reset"); this.setup() }, reload: function () { this.tail !== null && this.inTail && this.list.css(this.lt, f.intval(this.list.css(this.lt)) + this.tail); this.tail = null; this.inTail = !1; this.options.reloadCallback !== null && this.options.reloadCallback(this); if (this.options.visible !== null) { var a = this, c = Math.ceil(this.clipping() / this.options.visible), b = 0, d = 0; this.list.children("li").each(function (f) { b += a.dimension(this, c); f + 1 < a.first && (d = b) }); this.list.css(this.wh, b + "px"); this.list.css(this.lt, -d + "px") } this.scroll(this.first, !1) }, lock: function () { this.locked = !0; this.buttons() }, unlock: function () { this.locked = !1; this.buttons() }, size: function (a) { if (a !== void 0) this.options.size = a, this.locked || this.buttons(); return this.options.size }, has: function (a, c) { if (c === void 0 || !c) c = a; if (this.options.size !== null && c > this.options.size) c = this.options.size; for (var b = a; b <= c; b++) { var d = this.get(b); if (!d.length || d.hasClass("jcarousel-item-placeholder")) return !1 } return !0 }, get: function (a) { return g(">.jcarousel-item-" + a, this.list) }, add: function (a, c) { var b = this.get(a), d = 0, p = g(c); if (b.length === 0) for (var j, e = f.intval(a), b = this.create(a); ; ) { if (j = this.get(--e), e <= 0 || j.length) { e <= 0 ? this.list.prepend(b) : j.after(b); break } } else d = this.dimension(b); p.get(0).nodeName.toUpperCase() == "LI" ? (b.replaceWith(p), b = p) : b.empty().append(c); this.format(b.removeClass(this.className("jcarousel-item-placeholder")), a); p = this.options.visible !== null ? Math.ceil(this.clipping() / this.options.visible) : null; d = this.dimension(b, p) - d; a > 0 && a < this.first && this.list.css(this.lt, f.intval(this.list.css(this.lt)) - d + "px"); this.list.css(this.wh, f.intval(this.list.css(this.wh)) + d + "px"); return b }, remove: function (a) { var c = this.get(a); if (c.length && !(a >= this.first && a <= this.last)) { var b = this.dimension(c); a < this.first && this.list.css(this.lt, f.intval(this.list.css(this.lt)) + b + "px"); c.remove(); this.list.css(this.wh, f.intval(this.list.css(this.wh)) - b + "px") } }, next: function () { this.tail !== null && !this.inTail ? this.scrollTail(!1) : 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) }, prev: function () { this.tail !== null && this.inTail ? this.scrollTail(!0) : 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) }, scrollTail: function (a) { if (!this.locked && !this.animating && this.tail) { this.pauseAuto(); var c = f.intval(this.list.css(this.lt)), c = !a ? c - this.tail : c + this.tail; this.inTail = !a; this.prevFirst = this.first; this.prevLast = this.last; this.animate(c) } }, scroll: function (a, c) { !this.locked && !this.animating && (this.pauseAuto(), this.animate(this.pos(a), c)) }, pos: function (a, c) { var b = f.intval(this.list.css(this.lt)); if (this.locked || this.animating) return b; this.options.wrap != "circular" && (a = a < 1 ? 1 : this.options.size && a > this.options.size ? this.options.size : a); for (var d = this.first > a, g = this.options.wrap != "circular" && this.first <= 1 ? 1 : this.first, j = d ? this.get(g) : this.get(this.last), e = d ? g : g - 1, h = null, i = 0, k = !1, l = 0; d ? --e >= a : ++e < a; ) { h = this.get(e); k = !h.length; if (h.length === 0 && (h = this.create(e).addClass(this.className("jcarousel-item-placeholder")), j[d ? "before" : "after"](h), this.first !== null && this.options.wrap == "circular" && this.options.size !== null && (e <= 0 || e > this.options.size))) j = this.get(this.index(e)), j.length && (h = this.add(e, j.clone(!0))); j = h; l = this.dimension(h); k && (i += l); if (this.first !== null && (this.options.wrap == "circular" || e >= 1 && (this.options.size === null || e <= this.options.size))) b = d ? b + l : b - l } for (var g = this.clipping(), m = [], o = 0, n = 0, j = this.get(a - 1), e = a; ++o; ) { h = this.get(e); k = !h.length; if (h.length === 0) { h = this.create(e).addClass(this.className("jcarousel-item-placeholder")); if (j.length === 0) this.list.prepend(h); else j[d ? "before" : "after"](h); if (this.first !== null && this.options.wrap == "circular" && this.options.size !== null && (e <= 0 || e > this.options.size)) j = this.get(this.index(e)), j.length && (h = this.add(e, j.clone(!0))) } j = h; l = this.dimension(h); if (l === 0) throw Error("jCarousel: No width/height set for items. This will cause an infinite loop. Aborting..."); this.options.wrap != "circular" && this.options.size !== null && e > this.options.size ? m.push(h) : k && (i += l); n += l; if (n >= g) break; e++ } for (h = 0; h < m.length; h++) m[h].remove(); i > 0 && (this.list.css(this.wh, this.dimension(this.list) + i + "px"), d && (b -= i, this.list.css(this.lt, f.intval(this.list.css(this.lt)) - i + "px"))); i = a + o - 1; if (this.options.wrap != "circular" && this.options.size && i > this.options.size) i = this.options.size; if (e > i) { o = 0; e = i; for (n = 0; ++o; ) { h = this.get(e--); if (!h.length) break; n += this.dimension(h); if (n >= g) break } } e = i - o + 1; this.options.wrap != "circular" && e < 1 && (e = 1); if (this.inTail && d) b += this.tail, this.inTail = !1; this.tail = null; if (this.options.wrap != "circular" && i == this.options.size && i - o + 1 >= 1 && (d = f.intval(this.get(i).css(!this.options.vertical ? "marginRight" : "marginBottom")), n - d > g)) this.tail = n - g - d; if (c && a === this.options.size && this.tail) b -= this.tail, this.inTail = !0; for (; a-- > e; ) b += this.dimension(this.get(a)); this.prevFirst = this.first; this.prevLast = this.last; this.first = e; this.last = i; return b }, animate: function (a, c) { if (!this.locked && !this.animating) { this.animating = !0; var b = this, d = function () { b.animating = !1; a === 0 && b.list.css(b.lt, 0); !b.autoStopped && (b.options.wrap == "circular" || b.options.wrap == "both" || b.options.wrap == "last" || b.options.size === null || b.last < b.options.size || b.last == b.options.size && b.tail !== null && !b.inTail) && b.startAuto(); b.buttons(); b.notify("onAfterAnimation"); if (b.options.wrap == "circular" && b.options.size !== null) for (var c = b.prevFirst; c <= b.prevLast; c++) c !== null && !(c >= b.first && c <= b.last) && (c < 1 || c > b.options.size) && b.remove(c) }; this.notify("onBeforeAnimation"); if (!this.options.animation || c === !1) this.list.css(this.lt, a + "px"), d(); else { var f = !this.options.vertical ? this.options.rtl ? { right: a} : { left: a} : { top: a }, d = { duration: this.options.animation, easing: this.options.easing, complete: d }; if (g.isFunction(this.options.animationStepCallback)) d.step = this.options.animationStepCallback; this.list.animate(f, d) } } }, startAuto: function (a) { if (a !== void 0) this.options.auto = a; if (this.options.auto === 0) return this.stopAuto(); if (this.timer === null) { this.autoStopped = !1; var c = this; this.timer = window.setTimeout(function () { c.next() }, this.options.auto * 1E3) } }, stopAuto: function () { this.pauseAuto(); this.autoStopped = !0 }, pauseAuto: function () { if (this.timer !== null) window.clearTimeout(this.timer), this.timer = null }, buttons: function (a, c) { if (a == null && (a = !this.locked && this.options.size !== 0 && (this.options.wrap && this.options.wrap != "first" || this.options.size === null || this.last < this.options.size), !this.locked && (!this.options.wrap || this.options.wrap == "first") && this.options.size !== null && this.last >= this.options.size)) a = this.tail !== null && !this.inTail; if (c == null && (c = !this.locked && this.options.size !== 0 && (this.options.wrap && this.options.wrap != "last" || this.first > 1), !this.locked && (!this.options.wrap || this.options.wrap == "last") && this.options.size !== null && this.first == 1)) c = this.tail !== null && this.inTail; var b = this; this.buttonNext.size() > 0 ? (this.buttonNext.unbind(this.options.buttonNextEvent + ".jcarousel", this.funcNext), a && this.buttonNext.bind(this.options.buttonNextEvent + ".jcarousel", this.funcNext), this.buttonNext[a ? "removeClass" : "addClass"](this.className("jcarousel-next-disabled")).attr("disabled", a ? !1 : !0), this.options.buttonNextCallback !== null && this.buttonNext.data("jcarouselstate") != a && this.buttonNext.each(function () { b.options.buttonNextCallback(b, this, a) }).data("jcarouselstate", a)) : this.options.buttonNextCallback !== null && this.buttonNextState != a && this.options.buttonNextCallback(b, null, a); this.buttonPrev.size() > 0 ? (this.buttonPrev.unbind(this.options.buttonPrevEvent + ".jcarousel", this.funcPrev), c && this.buttonPrev.bind(this.options.buttonPrevEvent + ".jcarousel", this.funcPrev), this.buttonPrev[c ? "removeClass" : "addClass"](this.className("jcarousel-prev-disabled")).attr("disabled", c ? !1 : !0), this.options.buttonPrevCallback !== null && this.buttonPrev.data("jcarouselstate") != c && this.buttonPrev.each(function () { b.options.buttonPrevCallback(b, this, c) }).data("jcarouselstate", c)) : this.options.buttonPrevCallback !== null && this.buttonPrevState != c && this.options.buttonPrevCallback(b, null, c); this.buttonNextState = a; this.buttonPrevState = c }, notify: function (a) { var c = this.prevFirst === null ? "init" : this.prevFirst < this.first ? "next" : "prev"; this.callback("itemLoadCallback", a, c); this.prevFirst !== this.first && (this.callback("itemFirstInCallback", a, c, this.first), this.callback("itemFirstOutCallback", a, c, this.prevFirst)); this.prevLast !== this.last && (this.callback("itemLastInCallback", a, c, this.last), this.callback("itemLastOutCallback", a, c, this.prevLast)); this.callback("itemVisibleInCallback", a, c, this.first, this.last, this.prevFirst, this.prevLast); this.callback("itemVisibleOutCallback", a, c, this.prevFirst, this.prevLast, this.first, this.last) }, callback: function (a, c, b, d, f, j, e) { if (!(this.options[a] == null || typeof this.options[a] != "object" && c != "onAfterAnimation")) { var h = typeof this.options[a] == "object" ? this.options[a][c] : this.options[a]; if (g.isFunction(h)) { var i = this; if (d === void 0) h(i, b, c); else if (f === void 0) this.get(d).each(function () { h(i, this, d, b, c) }); else for (var a = function (a) { i.get(a).each(function () { h(i, this, a, b, c) }) }, k = d; k <= f; k++) k !== null && !(k >= j && k <= e) && a(k) } } }, create: function (a) { return this.format("<li></li>", a) }, format: function (a, c) { for (var a = g(a), b = a.get(0).className.split(" "), d = 0; d < b.length; d++) b[d].indexOf("jcarousel-") != -1 && a.removeClass(b[d]); a.addClass(this.className("jcarousel-item")).addClass(this.className("jcarousel-item-" + c)).css({ "float": this.options.rtl ? "right" : "left", "list-style": "none" }).attr("jcarouselindex", c); return a }, className: function (a) { return a + " " + a + (!this.options.vertical ? "-horizontal" : "-vertical") }, dimension: function (a, c) { var b = g(a); if (c == null) return !this.options.vertical ? b.outerWidth(!0) || f.intval(this.options.itemFallbackDimension) : b.outerHeight(!0) || f.intval(this.options.itemFallbackDimension); else { var d = !this.options.vertical ? c - f.intval(b.css("marginLeft")) - f.intval(b.css("marginRight")) : c - f.intval(b.css("marginTop")) - f.intval(b.css("marginBottom")); g(b).css(this.wh, d + "px"); return this.dimension(b) } }, clipping: function () { return !this.options.vertical ? this.clip[0].offsetWidth - f.intval(this.clip.css("borderLeftWidth")) - f.intval(this.clip.css("borderRightWidth")) : this.clip[0].offsetHeight - f.intval(this.clip.css("borderTopWidth")) - f.intval(this.clip.css("borderBottomWidth")) }, index: function (a, c) { if (c == null) c = this.options.size; return Math.round(((a - 1) / c - Math.floor((a - 1) / c)) * c) + 1 } }); f.extend({ defaults: function (a) { return g.extend(q, a || {}) }, intval: function (a) { a = parseInt(a, 10); return isNaN(a) ? 0 : a }, windowLoaded: function () { m = !0 } }); g.fn.jcarousel = function (a) { if (typeof a == "string") { var c = g(this).data("jcarousel"), b = Array.prototype.slice.call(arguments, 1); return c[a].apply(c, b) } else return this.each(function () { var b = g(this).data("jcarousel"); b ? (a && g.extend(b.options, a), b.reload()) : g(this).data("jcarousel", new f(this, a)) }) } })(jQuery);

/*
* 
* TableSorter 2.0 - Client-side table sorting with ease!
* Version 2.0.5b
* @requires jQuery v1.2.3
* 
* Copyright (c) 2007 Christian Bach
* Examples and docs at: http://tablesorter.com
* Dual licensed under the MIT and GPL licenses:
* http://www.opensource.org/licenses/mit-license.php
* http://www.gnu.org/licenses/gpl.html
* 
*/
/**
* 
* @description Create a sortable table with multi-column sorting capabilitys
* 
* @example $('table').tablesorter();
* @desc Create a simple tablesorter interface.
* 
* @example $('table').tablesorter({ sortList:[[0,0],[1,0]] });
* @desc Create a tablesorter interface and sort on the first and secound column column headers.
* 
* @example $('table').tablesorter({ headers: { 0: { sorter: false}, 1: {sorter: false} } });
*          
* @desc Create a tablesorter interface and disableing the first and second  column headers.
*      
* 
* @example $('table').tablesorter({ headers: { 0: {sorter:"integer"}, 1: {sorter:"currency"} } });
* 
* @desc Create a tablesorter interface and set a column parser for the first
*       and second column.
* 
* 
* @param Object
*            settings An object literal containing key/value pairs to provide
*            optional settings.
* 
* 
* @option String cssHeader (optional) A string of the class name to be appended
*         to sortable tr elements in the thead of the table. Default value:
*         "header"
* 
* @option String cssAsc (optional) A string of the class name to be appended to
*         sortable tr elements in the thead on a ascending sort. Default value:
*         "headerSortUp"
* 
* @option String cssDesc (optional) A string of the class name to be appended
*         to sortable tr elements in the thead on a descending sort. Default
*         value: "headerSortDown"
* 
* @option String sortInitialOrder (optional) A string of the inital sorting
*         order can be asc or desc. Default value: "asc"
* 
* @option String sortMultisortKey (optional) A string of the multi-column sort
*         key. Default value: "shiftKey"
* 
* @option String textExtraction (optional) A string of the text-extraction
*         method to use. For complex html structures inside td cell set this
*         option to "complex", on large tables the complex option can be slow.
*         Default value: "simple"
* 
* @option Object headers (optional) An array containing the forces sorting
*         rules. This option let's you specify a default sorting rule. Default
*         value: null
* 
* @option Array sortList (optional) An array containing the forces sorting
*         rules. This option let's you specify a default sorting rule. Default
*         value: null
* 
* @option Array sortForce (optional) An array containing forced sorting rules.
*         This option let's you specify a default sorting rule, which is
*         prepended to user-selected rules. Default value: null
* 
* @option Boolean sortLocaleCompare (optional) Boolean flag indicating whatever
*         to use String.localeCampare method or not. Default set to true.
* 
* 
* @option Array sortAppend (optional) An array containing forced sorting rules.
*         This option let's you specify a default sorting rule, which is
*         appended to user-selected rules. Default value: null
* 
* @option Boolean widthFixed (optional) Boolean flag indicating if tablesorter
*         should apply fixed widths to the table columns. This is usefull when
*         using the pager companion plugin. This options requires the dimension
*         jquery plugin. Default value: false
* 
* @option Boolean cancelSelection (optional) Boolean flag indicating if
*         tablesorter should cancel selection of the table headers text.
*         Default value: true
* 
* @option Boolean debug (optional) Boolean flag indicating if tablesorter
*         should display debuging information usefull for development.
* 
* @type jQuery
* 
* @name tablesorter
* 
* @cat Plugins/Tablesorter
* 
* @author Christian Bach/christian.bach@polyester.se
*/

(function ($) {
  $.extend({
    tablesorter: new 
        function () {

          var parsers = [],
                widgets = [];

          this.defaults = {
            cssHeader: "header",
            cssAsc: "headerSortUp",
            cssDesc: "headerSortDown",
            cssChildRow: "expand-child",
            sortInitialOrder: "asc",
            sortMultiSortKey: "shiftKey",
            sortForce: null,
            sortAppend: null,
            sortLocaleCompare: true,
            textExtraction: "simple",
            parsers: {}, widgets: [],
            widgetZebra: {
              css: ["even", "odd"]
            }, headers: {}, widthFixed: false,
            cancelSelection: true,
            sortList: [],
            headerList: [],
            dateFormat: "us",
            decimal: '/\.|\,/g',
            onRenderHeader: null,
            selectorHeaders: 'thead th',
            debug: false
          };

          /* debuging utils */

          function benchmark(s, d) {
            log(s + "," + (new Date().getTime() - d.getTime()) + "ms");
          }

          this.benchmark = benchmark;

          function log(s) {
            if (typeof console != "undefined" && typeof console.debug != "undefined") {
              console.log(s);
            } else {
              alert(s);
            }
          }

          /* parsers utils */

          function buildParserCache(table, $headers) {

            if (table.config.debug) {
              var parsersDebug = "";
            }

            if (table.tBodies.length == 0) return; // In the case of empty tables
            var rows = table.tBodies[0].rows;

            if (rows[0]) {

              var list = [],
                        cells = rows[0].cells,
                        l = cells.length;

              for (var i = 0; i < l; i++) {

                var p = false;

                if ($.metadata && ($($headers[i]).metadata() && $($headers[i]).metadata().sorter)) {

                  p = getParserById($($headers[i]).metadata().sorter);

                } else if ((table.config.headers[i] && table.config.headers[i].sorter)) {

                  p = getParserById(table.config.headers[i].sorter);
                }
                if (!p) {

                  p = detectParserForColumn(table, rows, -1, i);
                }

                if (table.config.debug) {
                  parsersDebug += "column:" + i + " parser:" + p.id + "\n";
                }

                list.push(p);
              }
            }

            if (table.config.debug) {
              log(parsersDebug);
            }

            return list;
          };

          function detectParserForColumn(table, rows, rowIndex, cellIndex) {
            var l = parsers.length,
                    node = false,
                    nodeValue = false,
                    keepLooking = true;
            while (nodeValue == '' && keepLooking) {
              rowIndex++;
              if (rows[rowIndex]) {
                node = getNodeFromRowAndCellIndex(rows, rowIndex, cellIndex);
                nodeValue = trimAndGetNodeText(table.config, node);
                if (table.config.debug) {
                  log('Checking if value was empty on row:' + rowIndex);
                }
              } else {
                keepLooking = false;
              }
            }
            for (var i = 1; i < l; i++) {
              if (parsers[i].is(nodeValue, table, node)) {
                return parsers[i];
              }
            }
            // 0 is always the generic parser (text)
            return parsers[0];
          }

          function getNodeFromRowAndCellIndex(rows, rowIndex, cellIndex) {
            return rows[rowIndex].cells[cellIndex];
          }

          function trimAndGetNodeText(config, node) {
            return $.trim(getElementText(config, node));
          }

          function getParserById(name) {
            var l = parsers.length;
            for (var i = 0; i < l; i++) {
              if (parsers[i].id.toLowerCase() == name.toLowerCase()) {
                return parsers[i];
              }
            }
            return false;
          }

          /* utils */

          function buildCache(table) {

            if (table.config.debug) {
              var cacheTime = new Date();
            }

            var totalRows = (table.tBodies[0] && table.tBodies[0].rows.length) || 0,
                    totalCells = (table.tBodies[0].rows[0] && table.tBodies[0].rows[0].cells.length) || 0,
                    parsers = table.config.parsers,
                    cache = {
                      row: [],
                      normalized: []
                    };

            for (var i = 0; i < totalRows; ++i) {

              /** Add the table data to main data array */
              var c = $(table.tBodies[0].rows[i]),
                        cols = [];

              // if this is a child row, add it to the last row's children and
              // continue to the next row
              if (c.hasClass(table.config.cssChildRow)) {
                cache.row[cache.row.length - 1] = cache.row[cache.row.length - 1].add(c);
                // go to the next for loop
                continue;
              }

              cache.row.push(c);

              for (var j = 0; j < totalCells; ++j) {
                cols.push(parsers[j].format(getElementText(table.config, c[0].cells[j]), table, c[0].cells[j]));
              }

              cols.push(cache.normalized.length); // add position for rowCache
              cache.normalized.push(cols);
              cols = null;
            };

            if (table.config.debug) {
              benchmark("Building cache for " + totalRows + " rows:", cacheTime);
            }

            return cache;
          };

          function getElementText(config, node) {

            var text = "";

            if (!node) return "";

            if (!config.supportsTextContent) config.supportsTextContent = node.textContent || false;

            if (config.textExtraction == "simple") {
              if (config.supportsTextContent) {
                text = node.textContent;
              } else {
                if (node.childNodes[0] && node.childNodes[0].hasChildNodes()) {
                  text = node.childNodes[0].innerHTML;
                } else {
                  text = node.innerHTML;
                }
              }
            } else {
              if (typeof (config.textExtraction) == "function") {
                text = config.textExtraction(node);
              } else {
                text = $(node).text();
              }
            }
            return text;
          }

          function appendToTable(table, cache) {

            if (table.config.debug) {
              var appendTime = new Date()
            }

            var c = cache,
                    r = c.row,
                    n = c.normalized,
                    totalRows = n.length,
                    checkCell = (n[0].length - 1),
                    tableBody = $(table.tBodies[0]),
                    rows = [];


            for (var i = 0; i < totalRows; i++) {
              var pos = n[i][checkCell];

              rows.push(r[pos]);

              if (!table.config.appender) {

                //var o = ;
                var l = r[pos].length;
                for (var j = 0; j < l; j++) {
                  tableBody[0].appendChild(r[pos][j]);
                }

                // 
              }
            }



            if (table.config.appender) {

              table.config.appender(table, rows);
            }

            rows = null;

            if (table.config.debug) {
              benchmark("Rebuilt table:", appendTime);
            }

            // apply table widgets
            applyWidget(table);

            // trigger sortend
            setTimeout(function () {
              $(table).trigger("sortEnd");
            }, 0);

          };

          function buildHeaders(table) {

            if (table.config.debug) {
              var time = new Date();
            }

            var meta = ($.metadata) ? true : false;

            var header_index = computeTableHeaderCellIndexes(table);

            $tableHeaders = $(table.config.selectorHeaders, table).each(function (index) {

              this.column = header_index[this.parentNode.rowIndex + "-" + this.cellIndex];
              // this.column = index;
              this.order = formatSortingOrder(table.config.sortInitialOrder);


              this.count = this.order;

              if (checkHeaderMetadata(this) || checkHeaderOptions(table, index)) this.sortDisabled = true;
              if (checkHeaderOptionsSortingLocked(table, index)) this.order = this.lockedOrder = checkHeaderOptionsSortingLocked(table, index);

              if (!this.sortDisabled) {
                var $th = $(this).addClass(table.config.cssHeader);
                if (table.config.onRenderHeader) table.config.onRenderHeader.apply($th);
              }

              // add cell to headerList
              table.config.headerList[index] = this;
            });

            if (table.config.debug) {
              benchmark("Built headers:", time);
              log($tableHeaders);
            }

            return $tableHeaders;

          };

          // from:
          // http://www.javascripttoolbox.com/lib/table/examples.php
          // http://www.javascripttoolbox.com/temp/table_cellindex.html


          function computeTableHeaderCellIndexes(t) {
            var matrix = [];
            var lookup = {};
            var thead = t.getElementsByTagName('THEAD')[0];
            var trs = thead.getElementsByTagName('TR');

            for (var i = 0; i < trs.length; i++) {
              var cells = trs[i].cells;
              for (var j = 0; j < cells.length; j++) {
                var c = cells[j];

                var rowIndex = c.parentNode.rowIndex;
                var cellId = rowIndex + "-" + c.cellIndex;
                var rowSpan = c.rowSpan || 1;
                var colSpan = c.colSpan || 1
                var firstAvailCol;
                if (typeof (matrix[rowIndex]) == "undefined") {
                  matrix[rowIndex] = [];
                }
                // Find first available column in the first row
                for (var k = 0; k < matrix[rowIndex].length + 1; k++) {
                  if (typeof (matrix[rowIndex][k]) == "undefined") {
                    firstAvailCol = k;
                    break;
                  }
                }
                lookup[cellId] = firstAvailCol;
                for (var k = rowIndex; k < rowIndex + rowSpan; k++) {
                  if (typeof (matrix[k]) == "undefined") {
                    matrix[k] = [];
                  }
                  var matrixrow = matrix[k];
                  for (var l = firstAvailCol; l < firstAvailCol + colSpan; l++) {
                    matrixrow[l] = "x";
                  }
                }
              }
            }
            return lookup;
          }

          function checkCellColSpan(table, rows, row) {
            var arr = [],
                    r = table.tHead.rows,
                    c = r[row].cells;

            for (var i = 0; i < c.length; i++) {
              var cell = c[i];

              if (cell.colSpan > 1) {
                arr = arr.concat(checkCellColSpan(table, headerArr, row++));
              } else {
                if (table.tHead.length == 1 || (cell.rowSpan > 1 || !r[row + 1])) {
                  arr.push(cell);
                }
                // headerArr[row] = (i+row);
              }
            }
            return arr;
          };

          function checkHeaderMetadata(cell) {
            if (($.metadata) && ($(cell).metadata().sorter === false)) {
              return true;
            };
            return false;
          }

          function checkHeaderOptions(table, i) {
            if ((table.config.headers[i]) && (table.config.headers[i].sorter === false)) {
              return true;
            };
            return false;
          }

          function checkHeaderOptionsSortingLocked(table, i) {
            if ((table.config.headers[i]) && (table.config.headers[i].lockedOrder)) return table.config.headers[i].lockedOrder;
            return false;
          }

          function applyWidget(table) {
            var c = table.config.widgets;
            var l = c.length;
            for (var i = 0; i < l; i++) {

              getWidgetById(c[i]).format(table);
            }

          }

          function getWidgetById(name) {
            var l = widgets.length;
            for (var i = 0; i < l; i++) {
              if (widgets[i].id.toLowerCase() == name.toLowerCase()) {
                return widgets[i];
              }
            }
          };

          function formatSortingOrder(v) {
            if (typeof (v) != "Number") {
              return (v.toLowerCase() == "desc") ? 1 : 0;
            } else {
              return (v == 1) ? 1 : 0;
            }
          }

          function isValueInArray(v, a) {
            var l = a.length;
            for (var i = 0; i < l; i++) {
              if (a[i][0] == v) {
                return true;
              }
            }
            return false;
          }

          function setHeadersCss(table, $headers, list, css) {
            // remove all header information
            $headers.removeClass(css[0]).removeClass(css[1]);

            var h = [];
            $headers.each(function (offset) {
              if (!this.sortDisabled) {
                h[this.column] = $(this);
              }
            });

            var l = list.length;
            for (var i = 0; i < l; i++) {
              h[list[i][0]].addClass(css[list[i][1]]);
            }
          }

          function fixColumnWidth(table, $headers) {
            var c = table.config;
            if (c.widthFixed) {
              var colgroup = $('<colgroup>');
              $("tr:first td", table.tBodies[0]).each(function () {
                colgroup.append($('<col>').css('width', $(this).width()));
              });
              $(table).prepend(colgroup);
            };
          }

          function updateHeaderSortCount(table, sortList) {
            var c = table.config,
                    l = sortList.length;
            for (var i = 0; i < l; i++) {
              var s = sortList[i],
                        o = c.headerList[s[0]];
              o.count = s[1];
              o.count++;
            }
          }

          /* sorting methods */

          function multisort(table, sortList, cache) {

            if (table.config.debug) {
              var sortTime = new Date();
            }

            var dynamicExp = "var sortWrapper = function(a,b) {",
                    l = sortList.length;

            // TODO: inline functions.
            for (var i = 0; i < l; i++) {

              var c = sortList[i][0];
              var order = sortList[i][1];
              // var s = (getCachedSortType(table.config.parsers,c) == "text") ?
              // ((order == 0) ? "sortText" : "sortTextDesc") : ((order == 0) ?
              // "sortNumeric" : "sortNumericDesc");
              // var s = (table.config.parsers[c].type == "text") ? ((order == 0)
              // ? makeSortText(c) : makeSortTextDesc(c)) : ((order == 0) ?
              // makeSortNumeric(c) : makeSortNumericDesc(c));
              var s = (table.config.parsers[c].type == "text") ? ((order == 0) ? makeSortFunction("text", "asc", c) : makeSortFunction("text", "desc", c)) : ((order == 0) ? makeSortFunction("numeric", "asc", c) : makeSortFunction("numeric", "desc", c));
              var e = "e" + i;

              dynamicExp += "var " + e + " = " + s; // + "(a[" + c + "],b[" + c
              // + "]); ";
              dynamicExp += "if(" + e + ") { return " + e + "; } ";
              dynamicExp += "else { ";

            }

            // if value is the same keep orignal order
            var orgOrderCol = cache.normalized[0].length - 1;
            dynamicExp += "return a[" + orgOrderCol + "]-b[" + orgOrderCol + "];";

            for (var i = 0; i < l; i++) {
              dynamicExp += "}; ";
            }

            dynamicExp += "return 0; ";
            dynamicExp += "}; ";

            if (table.config.debug) {
              benchmark("Evaling expression:" + dynamicExp, new Date());
            }

            eval(dynamicExp);

            cache.normalized.sort(sortWrapper);

            if (table.config.debug) {
              benchmark("Sorting on " + sortList.toString() + " and dir " + order + " time:", sortTime);
            }

            return cache;
          };

          function makeSortFunction(type, direction, index) {
            var a = "a[" + index + "]",
                    b = "b[" + index + "]";
            if (type == 'text' && direction == 'asc') {
              return "(" + a + " == " + b + " ? 0 : (" + a + " === null ? Number.POSITIVE_INFINITY : (" + b + " === null ? Number.NEGATIVE_INFINITY : (" + a + " < " + b + ") ? -1 : 1 )));";
            } else if (type == 'text' && direction == 'desc') {
              return "(" + a + " == " + b + " ? 0 : (" + a + " === null ? Number.POSITIVE_INFINITY : (" + b + " === null ? Number.NEGATIVE_INFINITY : (" + b + " < " + a + ") ? -1 : 1 )));";
            } else if (type == 'numeric' && direction == 'asc') {
              return "(" + a + " === null && " + b + " === null) ? 0 :(" + a + " === null ? Number.POSITIVE_INFINITY : (" + b + " === null ? Number.NEGATIVE_INFINITY : " + a + " - " + b + "));";
            } else if (type == 'numeric' && direction == 'desc') {
              return "(" + a + " === null && " + b + " === null) ? 0 :(" + a + " === null ? Number.POSITIVE_INFINITY : (" + b + " === null ? Number.NEGATIVE_INFINITY : " + b + " - " + a + "));";
            }
          };

          function makeSortText(i) {
            return "((a[" + i + "] < b[" + i + "]) ? -1 : ((a[" + i + "] > b[" + i + "]) ? 1 : 0));";
          };

          function makeSortTextDesc(i) {
            return "((b[" + i + "] < a[" + i + "]) ? -1 : ((b[" + i + "] > a[" + i + "]) ? 1 : 0));";
          };

          function makeSortNumeric(i) {
            return "a[" + i + "]-b[" + i + "];";
          };

          function makeSortNumericDesc(i) {
            return "b[" + i + "]-a[" + i + "];";
          };

          function sortText(a, b) {
            if (table.config.sortLocaleCompare) return a.localeCompare(b);
            return ((a < b) ? -1 : ((a > b) ? 1 : 0));
          };

          function sortTextDesc(a, b) {
            if (table.config.sortLocaleCompare) return b.localeCompare(a);
            return ((b < a) ? -1 : ((b > a) ? 1 : 0));
          };

          function sortNumeric(a, b) {
            return a - b;
          };

          function sortNumericDesc(a, b) {
            return b - a;
          };

          function getCachedSortType(parsers, i) {
            return parsers[i].type;
          }; /* public methods */
          this.construct = function (settings) {
            return this.each(function () {
              // if no thead or tbody quit.
              if (!this.tHead || !this.tBodies) return;
              // declare
              var $this, $document, $headers, cache, config, shiftDown = 0,
                        sortOrder;
              // new blank config object
              this.config = {};
              // merge and extend.
              config = $.extend(this.config, $.tablesorter.defaults, settings);
              // store common expression for speed
              $this = $(this);
              // save the settings where they read
              $.data(this, "tablesorter", config);
              // build headers
              $headers = buildHeaders(this);
              // try to auto detect column type, and store in tables config
              this.config.parsers = buildParserCache(this, $headers);
              // build the cache for the tbody cells
              cache = buildCache(this);
              // get the css class names, could be done else where.
              var sortCSS = [config.cssDesc, config.cssAsc];
              // fixate columns if the users supplies the fixedWidth option
              fixColumnWidth(this);
              // apply event handling to headers
              // this is to big, perhaps break it out?
              $headers.click(

                    function (e) {
                      var totalRows = ($this[0].tBodies[0] && $this[0].tBodies[0].rows.length) || 0;
                      if (!this.sortDisabled && totalRows > 0) {
                        // Only call sortStart if sorting is
                        // enabled.
                        $this.trigger("sortStart");
                        // store exp, for speed
                        var $cell = $(this);
                        // get current column index
                        var i = this.column;
                        // get current column sort order
                        this.order = this.count++ % 2;
                        // always sort on the locked order.
                        if (this.lockedOrder) this.order = this.lockedOrder;

                        // user only whants to sort on one
                        // column
                        if (!e[config.sortMultiSortKey]) {
                          // flush the sort list
                          config.sortList = [];
                          if (config.sortForce != null) {
                            var a = config.sortForce;
                            for (var j = 0; j < a.length; j++) {
                              if (a[j][0] != i) {
                                config.sortList.push(a[j]);
                              }
                            }
                          }
                          // add column to sort list
                          config.sortList.push([i, this.order]);
                          // multi column sorting
                        } else {
                          // the user has clicked on an all
                          // ready sortet column.
                          if (isValueInArray(i, config.sortList)) {
                            // revers the sorting direction
                            // for all tables.
                            for (var j = 0; j < config.sortList.length; j++) {
                              var s = config.sortList[j],
                                            o = config.headerList[s[0]];
                              if (s[0] == i) {
                                o.count = s[1];
                                o.count++;
                                s[1] = o.count % 2;
                              }
                            }
                          } else {
                            // add column to sort list array
                            config.sortList.push([i, this.order]);
                          }
                        };
                        setTimeout(function () {
                          // set css for headers
                          setHeadersCss($this[0], $headers, config.sortList, sortCSS);
                          appendToTable(
                                  $this[0], multisort(
                                  $this[0], config.sortList, cache)
                );
                        }, 1);
                        // stop normal event by returning false
                        return false;
                      }
                      // cancel selection
                    }).mousedown(function () {
                      if (config.cancelSelection) {
                        this.onselectstart = function () {
                          return false
                        };
                        return false;
                      }
                    });
              // apply easy methods that trigger binded events
              $this.bind("update", function () {
                var me = this;
                setTimeout(function () {
                  // rebuild parsers.
                  me.config.parsers = buildParserCache(
                            me, $headers);
                  // rebuild the cache map
                  cache = buildCache(me);
                }, 1);
              }).bind("updateCell", function (e, cell) {
                var config = this.config;
                // get position from the dom.
                var pos = [(cell.parentNode.rowIndex - 1), cell.cellIndex];
                // update cache
                cache.normalized[pos[0]][pos[1]] = config.parsers[pos[1]].format(
                        getElementText(config, cell), cell);
              }).bind("sorton", function (e, list) {
                $(this).trigger("sortStart");
                config.sortList = list;
                // update and store the sortlist
                var sortList = config.sortList;
                // update header count index
                updateHeaderSortCount(this, sortList);
                // set css for headers
                setHeadersCss(this, $headers, sortList, sortCSS);
                // sort the table and append it to the dom
                appendToTable(this, multisort(this, sortList, cache));
              }).bind("appendCache", function () {
                appendToTable(this, cache);
              }).bind("applyWidgetId", function (e, id) {
                getWidgetById(id).format(this);
              }).bind("applyWidgets", function () {
                // apply widgets
                applyWidget(this);
              });
              if ($.metadata && ($(this).metadata() && $(this).metadata().sortlist)) {
                config.sortList = $(this).metadata().sortlist;
              }
              // if user has supplied a sort list to constructor.
              if (config.sortList.length > 0) {
                $this.trigger("sorton", [config.sortList]);
              }
              // apply widgets
              applyWidget(this);
            });
          };
          this.addParser = function (parser) {
            var l = parsers.length,
                    a = true;
            for (var i = 0; i < l; i++) {
              if (parsers[i].id.toLowerCase() == parser.id.toLowerCase()) {
                a = false;
              }
            }
            if (a) {
              parsers.push(parser);
            };
          };
          this.addWidget = function (widget) {
            widgets.push(widget);
          };
          this.formatFloat = function (s) {
            var i = parseFloat(s);
            return (isNaN(i)) ? 0 : i;
          };
          this.formatInt = function (s) {
            var i = parseInt(s);
            return (isNaN(i)) ? 0 : i;
          };
          this.isDigit = function (s, config) {
            // replace all an wanted chars and match.
            return /^[-+]?\d*$/.test($.trim(s.replace(/[,.']/g, '')));
          };
          this.clearTableBody = function (table) {
            if ($.browser.msie) {
              function empty() {
                while (this.firstChild)
                  this.removeChild(this.firstChild);
              }
              empty.apply(table.tBodies[0]);
            } else {
              table.tBodies[0].innerHTML = "";
            }
          };
        }
  });

  // extend plugin scope
  $.fn.extend({
    tablesorter: $.tablesorter.construct
  });

  // make shortcut
  var ts = $.tablesorter;

  // add default parsers
  ts.addParser({
    id: "text",
    is: function (s) {
      return true;
    }, format: function (s) {
      return $.trim(s.toLocaleLowerCase());
    }, type: "text"
  });

  ts.addParser({
    id: "digit",
    is: function (s, table) {
      var c = table.config;
      return $.tablesorter.isDigit(s, c);
    }, format: function (s) {
      return $.tablesorter.formatFloat(s);
    }, type: "numeric"
  });

  ts.addParser({
    id: "currency",
    is: function (s) {
      return /^[Â£$â‚¬?.]/.test(s);
    }, format: function (s) {
      return $.tablesorter.formatFloat(s.replace(new RegExp(/[Â£$â‚¬]/g), ""));
    }, type: "numeric"
  });

  ts.addParser({
    id: "ipAddress",
    is: function (s) {
      return /^\d{2,3}[\.]\d{2,3}[\.]\d{2,3}[\.]\d{2,3}$/.test(s);
    }, format: function (s) {
      var a = s.split("."),
                r = "",
                l = a.length;
      for (var i = 0; i < l; i++) {
        var item = a[i];
        if (item.length == 2) {
          r += "0" + item;
        } else {
          r += item;
        }
      }
      return $.tablesorter.formatFloat(r);
    }, type: "numeric"
  });

  ts.addParser({
    id: "url",
    is: function (s) {
      return /^(https?|ftp|file):\/\/$/.test(s);
    }, format: function (s) {
      return jQuery.trim(s.replace(new RegExp(/(https?|ftp|file):\/\//), ''));
    }, type: "text"
  });

  ts.addParser({
    id: "isoDate",
    is: function (s) {
      return /^\d{4}[\/-]\d{1,2}[\/-]\d{1,2}$/.test(s);
    }, format: function (s) {
      return $.tablesorter.formatFloat((s != "") ? new Date(s.replace(
            new RegExp(/-/g), "/")).getTime() : "0");
    }, type: "numeric"
  });

  ts.addParser({
    id: "percent",
    is: function (s) {
      return /\%$/.test($.trim(s));
    }, format: function (s) {
      return $.tablesorter.formatFloat(s.replace(new RegExp(/%/g), ""));
    }, type: "numeric"
  });

  ts.addParser({
    id: "usLongDate",
    is: function (s) {
      return s.match(new RegExp(/^[A-Za-z]{3,10}\.? [0-9]{1,2}, ([0-9]{4}|'?[0-9]{2}) (([0-2]?[0-9]:[0-5][0-9])|([0-1]?[0-9]:[0-5][0-9]\s(AM|PM)))$/));
    }, format: function (s) {
      return $.tablesorter.formatFloat(new Date(s).getTime());
    }, type: "numeric"
  });

  ts.addParser({
    id: "shortDate",
    is: function (s) {
      return /\d{1,2}[\/\-]\d{1,2}[\/\-]\d{2,4}/.test(s);
    }, format: function (s, table) {
      var c = table.config;
      s = s.replace(/\-/g, "/");
      if (c.dateFormat == "us") {
        // reformat the string in ISO format
        s = s.replace(/(\d{1,2})[\/\-](\d{1,2})[\/\-](\d{4})/, "$3/$1/$2");
      } else if (c.dateFormat == "uk") {
        // reformat the string in ISO format
        s = s.replace(/(\d{1,2})[\/\-](\d{1,2})[\/\-](\d{4})/, "$3/$2/$1");
      } else if (c.dateFormat == "dd/mm/yy" || c.dateFormat == "dd-mm-yy") {
        s = s.replace(/(\d{1,2})[\/\-](\d{1,2})[\/\-](\d{2})/, "$1/$2/$3");
      }
      return $.tablesorter.formatFloat(new Date(s).getTime());
    }, type: "numeric"
  });
  ts.addParser({
    id: "time",
    is: function (s) {
      return /^(([0-2]?[0-9]:[0-5][0-9])|([0-1]?[0-9]:[0-5][0-9]\s(am|pm)))$/.test(s);
    }, format: function (s) {
      return $.tablesorter.formatFloat(new Date("2000/01/01 " + s).getTime());
    }, type: "numeric"
  });
  ts.addParser({
    id: "metadata",
    is: function (s) {
      return false;
    }, format: function (s, table, cell) {
      var c = table.config,
                p = (!c.parserMetadataName) ? 'sortValue' : c.parserMetadataName;
      return $(cell).metadata()[p];
    }, type: "numeric"
  });
  // add default widgets
  ts.addWidget({
    id: "zebra",
    format: function (table) {
      if (table.config.debug) {
        var time = new Date();
      }
      var $tr, row = -1,
                odd;
      // loop through the visible rows
      $("tr:visible", table.tBodies[0]).each(function (i) {
        $tr = $(this);
        // style children rows the same way the parent
        // row was styled
        if (!$tr.hasClass(table.config.cssChildRow)) row++;
        odd = (row % 2 == 0);
        $tr.removeClass(
                table.config.widgetZebra.css[odd ? 0 : 1]).addClass(
                table.config.widgetZebra.css[odd ? 1 : 0])
      });
      if (table.config.debug) {
        $.tablesorter.benchmark("Applying Zebra widget", time);
      }
    }
  });
})(jQuery);

$(document).ready(function(){
  $("#Fotos a").lightBox();
  $(".jqzoom").jqueryzoom();
  $('#mycarousel').jcarousel({ start: 1, scroll: 1, itemFallbackDimension: 125 });
  $("ul.tabs").tabs("div.panes > div");
  $("table.existencias").tablesorter({});
});

