﻿//////////////////////jquery

(function() {
    var _jQuery = window.jQuery, _$ = window.$; var jQuery = window.jQuery = window.$ = function(selector, context) { return new jQuery.fn.init(selector, context); }; var quickExpr = /^[^<]*(<(.|\s)+>)[^>]*$|^#(\w+)$/, isSimple = /^.[^:#\[\.]*$/, undefined; jQuery.fn = jQuery.prototype = { init: function(selector, context) {
        selector = selector || document; if (selector.nodeType) { this[0] = selector; this.length = 1; return this; } if (typeof selector == "string") {
            var match = quickExpr.exec(selector); if (match && (match[1] || !context)) { if (match[1]) selector = jQuery.clean([match[1]], context); else { var elem = document.getElementById(match[3]); if (elem) { if (elem.id != match[3]) return jQuery().find(selector); return jQuery(elem); } selector = []; } } else
                return jQuery(context).find(selector);
        } else if (jQuery.isFunction(selector)) return jQuery(document)[jQuery.fn.ready ? "ready" : "load"](selector); return this.setArray(jQuery.makeArray(selector));
    }, jquery: "1.2.6", size: function() { return this.length; }, length: 0, get: function(num) { return num == undefined ? jQuery.makeArray(this) : this[num]; }, pushStack: function(elems) { var ret = jQuery(elems); ret.prevObject = this; return ret; }, setArray: function(elems) { this.length = 0; Array.prototype.push.apply(this, elems); return this; }, each: function(callback, args) { return jQuery.each(this, callback, args); }, index: function(elem) { var ret = -1; return jQuery.inArray(elem && elem.jquery ? elem[0] : elem, this); }, attr: function(name, value, type) { var options = name; if (name.constructor == String) if (value === undefined) return this[0] && jQuery[type || "attr"](this[0], name); else { options = {}; options[name] = value; } return this.each(function(i) { for (name in options) jQuery.attr(type ? this.style : this, name, jQuery.prop(this, options[name], type, i, name)); }); }, css: function(key, value) { if ((key == 'width' || key == 'height') && parseFloat(value) < 0) value = undefined; return this.attr(key, value, "curCSS"); }, text: function(text) { if (typeof text != "object" && text != null) return this.empty().append((this[0] && this[0].ownerDocument || document).createTextNode(text)); var ret = ""; jQuery.each(text || this, function() { jQuery.each(this.childNodes, function() { if (this.nodeType != 8) ret += this.nodeType != 1 ? this.nodeValue : jQuery.fn.text([this]); }); }); return ret; }, wrapAll: function(html) { if (this[0]) jQuery(html, this[0].ownerDocument).clone().insertBefore(this[0]).map(function() { var elem = this; while (elem.firstChild) elem = elem.firstChild; return elem; }).append(this); return this; }, wrapInner: function(html) { return this.each(function() { jQuery(this).contents().wrapAll(html); }); }, wrap: function(html) { return this.each(function() { jQuery(this).wrapAll(html); }); }, append: function() { return this.domManip(arguments, true, false, function(elem) { if (this.nodeType == 1) this.appendChild(elem); }); }, prepend: function() { return this.domManip(arguments, true, true, function(elem) { if (this.nodeType == 1) this.insertBefore(elem, this.firstChild); }); }, before: function() { return this.domManip(arguments, false, false, function(elem) { this.parentNode.insertBefore(elem, this); }); }, after: function() { return this.domManip(arguments, false, true, function(elem) { this.parentNode.insertBefore(elem, this.nextSibling); }); }, end: function() { return this.prevObject || jQuery([]); }, find: function(selector) { var elems = jQuery.map(this, function(elem) { return jQuery.find(selector, elem); }); return this.pushStack(/[^+>] [^+>]/.test(selector) || selector.indexOf("..") > -1 ? jQuery.unique(elems) : elems); }, clone: function(events) {
        var ret = this.map(function() {
            if (jQuery.browser.msie && !jQuery.isXMLDoc(this)) { var clone = this.cloneNode(true), container = document.createElement("div"); container.appendChild(clone); return jQuery.clean([container.innerHTML])[0]; } else
                return this.cloneNode(true);
        }); var clone = ret.find("*").andSelf().each(function() { if (this[expando] != undefined) this[expando] = null; }); if (events === true) this.find("*").andSelf().each(function(i) { if (this.nodeType == 3) return; var events = jQuery.data(this, "events"); for (var type in events) for (var handler in events[type]) jQuery.event.add(clone[i], type, events[type][handler], events[type][handler].data); }); return ret;
    }, filter: function(selector) { return this.pushStack(jQuery.isFunction(selector) && jQuery.grep(this, function(elem, i) { return selector.call(elem, i); }) || jQuery.multiFilter(selector, this)); }, not: function(selector) {
        if (selector.constructor == String) if (isSimple.test(selector)) return this.pushStack(jQuery.multiFilter(selector, this, true)); else
            selector = jQuery.multiFilter(selector, this); var isArrayLike = selector.length && selector[selector.length - 1] !== undefined && !selector.nodeType; return this.filter(function() { return isArrayLike ? jQuery.inArray(this, selector) < 0 : this != selector; });
    }, add: function(selector) { return this.pushStack(jQuery.unique(jQuery.merge(this.get(), typeof selector == 'string' ? jQuery(selector) : jQuery.makeArray(selector)))); }, is: function(selector) { return !!selector && jQuery.multiFilter(selector, this).length > 0; }, hasClass: function(selector) { return this.is("." + selector); }, val: function(value) {
        if (value == undefined) {
            if (this.length) {
                var elem = this[0]; if (jQuery.nodeName(elem, "select")) { var index = elem.selectedIndex, values = [], options = elem.options, one = elem.type == "select-one"; if (index < 0) return null; for (var i = one ? index : 0, max = one ? index + 1 : options.length; i < max; i++) { var option = options[i]; if (option.selected) { value = jQuery.browser.msie && !option.attributes.value.specified ? option.text : option.value; if (one) return value; values.push(value); } } return values; } else
                    return (this[0].value || "").replace(/\r/g, "");
            } return undefined;
        } if (value.constructor == Number) value += ''; return this.each(function() {
            if (this.nodeType != 1) return; if (value.constructor == Array && /radio|checkbox/.test(this.type)) this.checked = (jQuery.inArray(this.value, value) >= 0 || jQuery.inArray(this.name, value) >= 0); else if (jQuery.nodeName(this, "select")) { var values = jQuery.makeArray(value); jQuery("option", this).each(function() { this.selected = (jQuery.inArray(this.value, values) >= 0 || jQuery.inArray(this.text, values) >= 0); }); if (!values.length) this.selectedIndex = -1; } else
                this.value = value;
        });
    }, html: function(value) { return value == undefined ? (this[0] ? this[0].innerHTML : null) : this.empty().append(value); }, replaceWith: function(value) { return this.after(value).remove(); }, eq: function(i) { return this.slice(i, i + 1); }, slice: function() { return this.pushStack(Array.prototype.slice.apply(this, arguments)); }, map: function(callback) { return this.pushStack(jQuery.map(this, function(elem, i) { return callback.call(elem, i, elem); })); }, andSelf: function() { return this.add(this.prevObject); }, data: function(key, value) {
        var parts = key.split("."); parts[1] = parts[1] ? "." + parts[1] : ""; if (value === undefined) { var data = this.triggerHandler("getData" + parts[1] + "!", [parts[0]]); if (data === undefined && this.length) data = jQuery.data(this[0], key); return data === undefined && parts[1] ? this.data(parts[0]) : data; } else
            return this.trigger("setData" + parts[1] + "!", [parts[0], value]).each(function() { jQuery.data(this, key, value); });
    }, removeData: function(key) { return this.each(function() { jQuery.removeData(this, key); }); }, domManip: function(args, table, reverse, callback) { var clone = this.length > 1, elems; return this.each(function() { if (!elems) { elems = jQuery.clean(args, this.ownerDocument); if (reverse) elems.reverse(); } var obj = this; if (table && jQuery.nodeName(this, "table") && jQuery.nodeName(elems[0], "tr")) obj = this.getElementsByTagName("tbody")[0] || this.appendChild(this.ownerDocument.createElement("tbody")); var scripts = jQuery([]); jQuery.each(elems, function() { var elem = clone ? jQuery(this).clone(true)[0] : this; if (jQuery.nodeName(elem, "script")) scripts = scripts.add(elem); else { if (elem.nodeType == 1) scripts = scripts.add(jQuery("script", elem).remove()); callback.call(obj, elem); } }); scripts.each(evalScript); }); } 
    }; jQuery.fn.init.prototype = jQuery.fn; function evalScript(i, elem) {
        if (elem.src) jQuery.ajax({ url: elem.src, async: false, dataType: "script" }); else
            jQuery.globalEval(elem.text || elem.textContent || elem.innerHTML || ""); if (elem.parentNode) elem.parentNode.removeChild(elem);
    } function now() { return +new Date; } jQuery.extend = jQuery.fn.extend = function() { var target = arguments[0] || {}, i = 1, length = arguments.length, deep = false, options; if (target.constructor == Boolean) { deep = target; target = arguments[1] || {}; i = 2; } if (typeof target != "object" && typeof target != "function") target = {}; if (length == i) { target = this; --i; } for (; i < length; i++) if ((options = arguments[i]) != null) for (var name in options) { var src = target[name], copy = options[name]; if (target === copy) continue; if (deep && copy && typeof copy == "object" && !copy.nodeType) target[name] = jQuery.extend(deep, src || (copy.length != null ? [] : {}), copy); else if (copy !== undefined) target[name] = copy; } return target; }; var expando = "jQuery" + now(), uuid = 0, windowData = {}, exclude = /z-?index|font-?weight|opacity|zoom|line-?height/i, defaultView = document.defaultView || {}; jQuery.extend({ noConflict: function(deep) { window.$ = _$; if (deep) window.jQuery = _jQuery; return jQuery; }, isFunction: function(fn) { return !!fn && typeof fn != "string" && !fn.nodeName && fn.constructor != Array && /^[\s[]?function/.test(fn + ""); }, isXMLDoc: function(elem) { return elem.documentElement && !elem.body || elem.tagName && elem.ownerDocument && !elem.ownerDocument.body; }, globalEval: function(data) {
        data = jQuery.trim(data); if (data) {
            var head = document.getElementsByTagName("head")[0] || document.documentElement, script = document.createElement("script"); script.type = "text/javascript"; if (jQuery.browser.msie) script.text = data; else
                script.appendChild(document.createTextNode(data)); head.insertBefore(script, head.firstChild); head.removeChild(script);
        } 
    }, nodeName: function(elem, name) { return elem.nodeName && elem.nodeName.toUpperCase() == name.toUpperCase(); }, cache: {}, data: function(elem, name, data) { elem = elem == window ? windowData : elem; var id = elem[expando]; if (!id) id = elem[expando] = ++uuid; if (name && !jQuery.cache[id]) jQuery.cache[id] = {}; if (data !== undefined) jQuery.cache[id][name] = data; return name ? jQuery.cache[id][name] : id; }, removeData: function(elem, name) { elem = elem == window ? windowData : elem; var id = elem[expando]; if (name) { if (jQuery.cache[id]) { delete jQuery.cache[id][name]; name = ""; for (name in jQuery.cache[id]) break; if (!name) jQuery.removeData(elem); } } else { try { delete elem[expando]; } catch (e) { if (elem.removeAttribute) elem.removeAttribute(expando); } delete jQuery.cache[id]; } }, each: function(object, callback, args) {
        var name, i = 0, length = object.length; if (args) {
            if (length == undefined) { for (name in object) if (callback.apply(object[name], args) === false) break; } else
                for (; i < length; ) if (callback.apply(object[i++], args) === false) break;
        } else {
            if (length == undefined) { for (name in object) if (callback.call(object[name], name, object[name]) === false) break; } else
                for (var value = object[0]; i < length && callback.call(value, i, value) !== false; value = object[++i]) { } 
        } return object;
    }, prop: function(elem, value, type, i, name) { if (jQuery.isFunction(value)) value = value.call(elem, i); return value && value.constructor == Number && type == "curCSS" && !exclude.test(name) ? value + "px" : value; }, className: { add: function(elem, classNames) { jQuery.each((classNames || "").split(/\s+/), function(i, className) { if (elem.nodeType == 1 && !jQuery.className.has(elem.className, className)) elem.className += (elem.className ? " " : "") + className; }); }, remove: function(elem, classNames) { if (elem.nodeType == 1) elem.className = classNames != undefined ? jQuery.grep(elem.className.split(/\s+/), function(className) { return !jQuery.className.has(classNames, className); }).join(" ") : ""; }, has: function(elem, className) { return jQuery.inArray(className, (elem.className || elem).toString().split(/\s+/)) > -1; } }, swap: function(elem, options, callback) { var old = {}; for (var name in options) { old[name] = elem.style[name]; elem.style[name] = options[name]; } callback.call(elem); for (var name in options) elem.style[name] = old[name]; }, css: function(elem, name, force) {
        if (name == "width" || name == "height") {
            var val, props = { position: "absolute", visibility: "hidden", display: "block" }, which = name == "width" ? ["Left", "Right"] : ["Top", "Bottom"]; function getWH() { val = name == "width" ? elem.offsetWidth : elem.offsetHeight; var padding = 0, border = 0; jQuery.each(which, function() { padding += parseFloat(jQuery.curCSS(elem, "padding" + this, true)) || 0; border += parseFloat(jQuery.curCSS(elem, "border" + this + "Width", true)) || 0; }); val -= Math.round(padding + border); } if (jQuery(elem).is(":visible")) getWH(); else
                jQuery.swap(elem, props, getWH); return Math.max(0, val);
        } return jQuery.curCSS(elem, name, force);
    }, curCSS: function(elem, name, force) { var ret, style = elem.style; function color(elem) { if (!jQuery.browser.safari) return false; var ret = defaultView.getComputedStyle(elem, null); return !ret || ret.getPropertyValue("color") == ""; } if (name == "opacity" && jQuery.browser.msie) { ret = jQuery.attr(style, "opacity"); return ret == "" ? "1" : ret; } if (jQuery.browser.opera && name == "display") { var save = style.outline; style.outline = "0 solid black"; style.outline = save; } if (name.match(/float/i)) name = styleFloat; if (!force && style && style[name]) ret = style[name]; else if (defaultView.getComputedStyle) { if (name.match(/float/i)) name = "float"; name = name.replace(/([A-Z])/g, "-$1").toLowerCase(); var computedStyle = defaultView.getComputedStyle(elem, null); if (computedStyle && !color(elem)) ret = computedStyle.getPropertyValue(name); else { var swap = [], stack = [], a = elem, i = 0; for (; a && color(a); a = a.parentNode) stack.unshift(a); for (; i < stack.length; i++) if (color(stack[i])) { swap[i] = stack[i].style.display; stack[i].style.display = "block"; } ret = name == "display" && swap[stack.length - 1] != null ? "none" : (computedStyle && computedStyle.getPropertyValue(name)) || ""; for (i = 0; i < swap.length; i++) if (swap[i] != null) stack[i].style.display = swap[i]; } if (name == "opacity" && ret == "") ret = "1"; } else if (elem.currentStyle) { var camelCase = name.replace(/\-(\w)/g, function(all, letter) { return letter.toUpperCase(); }); ret = elem.currentStyle[name] || elem.currentStyle[camelCase]; if (!/^\d+(px)?$/i.test(ret) && /^\d/.test(ret)) { var left = style.left, rsLeft = elem.runtimeStyle.left; elem.runtimeStyle.left = elem.currentStyle.left; style.left = ret || 0; ret = style.pixelLeft + "px"; style.left = left; elem.runtimeStyle.left = rsLeft; } } return ret; }, clean: function(elems, context) {
        var ret = []; context = context || document; if (typeof context.createElement == 'undefined') context = context.ownerDocument || context[0] && context[0].ownerDocument || document; jQuery.each(elems, function(i, elem) {
            if (!elem) return; if (elem.constructor == Number) elem += ''; if (typeof elem == "string") { elem = elem.replace(/(<(\w+)[^>]*?)\/>/g, function(all, front, tag) { return tag.match(/^(abbr|br|col|img|input|link|meta|param|hr|area|embed)$/i) ? all : front + "></" + tag + ">"; }); var tags = jQuery.trim(elem).toLowerCase(), div = context.createElement("div"); var wrap = !tags.indexOf("<opt") && [1, "<select multiple='multiple'>", "</select>"] || !tags.indexOf("<leg") && [1, "<fieldset>", "</fieldset>"] || tags.match(/^<(thead|tbody|tfoot|colg|cap)/) && [1, "<table>", "</table>"] || !tags.indexOf("<tr") && [2, "<table><tbody>", "</tbody></table>"] || (!tags.indexOf("<td") || !tags.indexOf("<th")) && [3, "<table><tbody><tr>", "</tr></tbody></table>"] || !tags.indexOf("<col") && [2, "<table><tbody></tbody><colgroup>", "</colgroup></table>"] || jQuery.browser.msie && [1, "div<div>", "</div>"] || [0, "", ""]; div.innerHTML = wrap[1] + elem + wrap[2]; while (wrap[0]--) div = div.lastChild; if (jQuery.browser.msie) { var tbody = !tags.indexOf("<table") && tags.indexOf("<tbody") < 0 ? div.firstChild && div.firstChild.childNodes : wrap[1] == "<table>" && tags.indexOf("<tbody") < 0 ? div.childNodes : []; for (var j = tbody.length - 1; j >= 0; --j) if (jQuery.nodeName(tbody[j], "tbody") && !tbody[j].childNodes.length) tbody[j].parentNode.removeChild(tbody[j]); if (/^\s/.test(elem)) div.insertBefore(context.createTextNode(elem.match(/^\s*/)[0]), div.firstChild); } elem = jQuery.makeArray(div.childNodes); } if (elem.length === 0 && (!jQuery.nodeName(elem, "form") && !jQuery.nodeName(elem, "select"))) return; if (elem[0] == undefined || jQuery.nodeName(elem, "form") || elem.options) ret.push(elem); else
                ret = jQuery.merge(ret, elem);
        }); return ret;
    }, attr: function(elem, name, value) { if (!elem || elem.nodeType == 3 || elem.nodeType == 8) return undefined; var notxml = !jQuery.isXMLDoc(elem), set = value !== undefined, msie = jQuery.browser.msie; name = notxml && jQuery.props[name] || name; if (elem.tagName) { var special = /href|src|style/.test(name); if (name == "selected" && jQuery.browser.safari) elem.parentNode.selectedIndex; if (name in elem && notxml && !special) { if (set) { if (name == "type" && jQuery.nodeName(elem, "input") && elem.parentNode) throw "type property can't be changed"; elem[name] = value; } if (jQuery.nodeName(elem, "form") && elem.getAttributeNode(name)) return elem.getAttributeNode(name).nodeValue; return elem[name]; } if (msie && notxml && name == "style") return jQuery.attr(elem.style, "cssText", value); if (set) elem.setAttribute(name, "" + value); var attr = msie && notxml && special ? elem.getAttribute(name, 2) : elem.getAttribute(name); return attr === null ? undefined : attr; } if (msie && name == "opacity") { if (set) { elem.zoom = 1; elem.filter = (elem.filter || "").replace(/alpha\([^)]*\)/, "") + (parseInt(value) + '' == "NaN" ? "" : "alpha(opacity=" + value * 100 + ")"); } return elem.filter && elem.filter.indexOf("opacity=") >= 0 ? (parseFloat(elem.filter.match(/opacity=([^)]*)/)[1]) / 100) + '' : ""; } name = name.replace(/-([a-z])/ig, function(all, letter) { return letter.toUpperCase(); }); if (set) elem[name] = value; return elem[name]; }, trim: function(text) { return (text || "").replace(/^\s+|\s+$/g, ""); }, makeArray: function(array) {
        var ret = []; if (array != null) {
            var i = array.length; if (i == null || array.split || array.setInterval || array.call) ret[0] = array; else
                while (i) ret[--i] = array[i];
        } return ret;
    }, inArray: function(elem, array) { for (var i = 0, length = array.length; i < length; i++) if (array[i] === elem) return i; return -1; }, merge: function(first, second) {
        var i = 0, elem, pos = first.length; if (jQuery.browser.msie) { while (elem = second[i++]) if (elem.nodeType != 8) first[pos++] = elem; } else
            while (elem = second[i++]) first[pos++] = elem; return first;
    }, unique: function(array) { var ret = [], done = {}; try { for (var i = 0, length = array.length; i < length; i++) { var id = jQuery.data(array[i]); if (!done[id]) { done[id] = true; ret.push(array[i]); } } } catch (e) { ret = array; } return ret; }, grep: function(elems, callback, inv) { var ret = []; for (var i = 0, length = elems.length; i < length; i++) if (!inv != !callback(elems[i], i)) ret.push(elems[i]); return ret; }, map: function(elems, callback) { var ret = []; for (var i = 0, length = elems.length; i < length; i++) { var value = callback(elems[i], i); if (value != null) ret[ret.length] = value; } return ret.concat.apply([], ret); } 
    }); var userAgent = navigator.userAgent.toLowerCase(); jQuery.browser = { version: (userAgent.match(/.+(?:rv|it|ra|ie)[\/: ]([\d.]+)/) || [])[1], safari: /webkit/.test(userAgent), opera: /opera/.test(userAgent), msie: /msie/.test(userAgent) && !/opera/.test(userAgent), mozilla: /mozilla/.test(userAgent) && !/(compatible|webkit)/.test(userAgent) }; var styleFloat = jQuery.browser.msie ? "styleFloat" : "cssFloat"; jQuery.extend({ boxModel: !jQuery.browser.msie || document.compatMode == "CSS1Compat", props: { "for": "htmlFor", "class": "className", "float": styleFloat, cssFloat: styleFloat, styleFloat: styleFloat, readonly: "readOnly", maxlength: "maxLength", cellspacing: "cellSpacing"} }); jQuery.each({ parent: function(elem) { return elem.parentNode; }, parents: function(elem) { return jQuery.dir(elem, "parentNode"); }, next: function(elem) { return jQuery.nth(elem, 2, "nextSibling"); }, prev: function(elem) { return jQuery.nth(elem, 2, "previousSibling"); }, nextAll: function(elem) { return jQuery.dir(elem, "nextSibling"); }, prevAll: function(elem) { return jQuery.dir(elem, "previousSibling"); }, siblings: function(elem) { return jQuery.sibling(elem.parentNode.firstChild, elem); }, children: function(elem) { return jQuery.sibling(elem.firstChild); }, contents: function(elem) { return jQuery.nodeName(elem, "iframe") ? elem.contentDocument || elem.contentWindow.document : jQuery.makeArray(elem.childNodes); } }, function(name, fn) { jQuery.fn[name] = function(selector) { var ret = jQuery.map(this, fn); if (selector && typeof selector == "string") ret = jQuery.multiFilter(selector, ret); return this.pushStack(jQuery.unique(ret)); }; }); jQuery.each({ appendTo: "append", prependTo: "prepend", insertBefore: "before", insertAfter: "after", replaceAll: "replaceWith" }, function(name, original) { jQuery.fn[name] = function() { var args = arguments; return this.each(function() { for (var i = 0, length = args.length; i < length; i++) jQuery(args[i])[original](this); }); }; }); jQuery.each({ removeAttr: function(name) { jQuery.attr(this, name, ""); if (this.nodeType == 1) this.removeAttribute(name); }, addClass: function(classNames) { jQuery.className.add(this, classNames); }, removeClass: function(classNames) { jQuery.className.remove(this, classNames); }, toggleClass: function(classNames) { jQuery.className[jQuery.className.has(this, classNames) ? "remove" : "add"](this, classNames); }, remove: function(selector) { if (!selector || jQuery.filter(selector, [this]).r.length) { jQuery("*", this).add(this).each(function() { jQuery.event.remove(this); jQuery.removeData(this); }); if (this.parentNode) this.parentNode.removeChild(this); } }, empty: function() { jQuery(">*", this).remove(); while (this.firstChild) this.removeChild(this.firstChild); } }, function(name, fn) { jQuery.fn[name] = function() { return this.each(fn, arguments); }; }); jQuery.each(["Height", "Width"], function(i, name) { var type = name.toLowerCase(); jQuery.fn[type] = function(size) { return this[0] == window ? jQuery.browser.opera && document.body["client" + name] || jQuery.browser.safari && window["inner" + name] || document.compatMode == "CSS1Compat" && document.documentElement["client" + name] || document.body["client" + name] : this[0] == document ? Math.max(Math.max(document.body["scroll" + name], document.documentElement["scroll" + name]), Math.max(document.body["offset" + name], document.documentElement["offset" + name])) : size == undefined ? (this.length ? jQuery.css(this[0], type) : null) : this.css(type, size.constructor == String ? size : size + "px"); }; }); function num(elem, prop) { return elem[0] && parseInt(jQuery.curCSS(elem[0], prop, true), 10) || 0; } var chars = jQuery.browser.safari && parseInt(jQuery.browser.version) < 417 ? "(?:[\\w*_-]|\\\\.)" : "(?:[\\w\u0128-\uFFFF*_-]|\\\\.)", quickChild = new RegExp("^>\\s*(" + chars + "+)"), quickID = new RegExp("^(" + chars + "+)(#)(" + chars + "+)"), quickClass = new RegExp("^([#.]?)(" + chars + "*)"); jQuery.extend({ expr: { "": function(a, i, m) { return m[2] == "*" || jQuery.nodeName(a, m[2]); }, "#": function(a, i, m) { return a.getAttribute("id") == m[2]; }, ":": { lt: function(a, i, m) { return i < m[3] - 0; }, gt: function(a, i, m) { return i > m[3] - 0; }, nth: function(a, i, m) { return m[3] - 0 == i; }, eq: function(a, i, m) { return m[3] - 0 == i; }, first: function(a, i) { return i == 0; }, last: function(a, i, m, r) { return i == r.length - 1; }, even: function(a, i) { return i % 2 == 0; }, odd: function(a, i) { return i % 2; }, "first-child": function(a) { return a.parentNode.getElementsByTagName("*")[0] == a; }, "last-child": function(a) { return jQuery.nth(a.parentNode.lastChild, 1, "previousSibling") == a; }, "only-child": function(a) { return !jQuery.nth(a.parentNode.lastChild, 2, "previousSibling"); }, parent: function(a) { return a.firstChild; }, empty: function(a) { return !a.firstChild; }, contains: function(a, i, m) { return (a.textContent || a.innerText || jQuery(a).text() || "").indexOf(m[3]) >= 0; }, visible: function(a) { return "hidden" != a.type && jQuery.css(a, "display") != "none" && jQuery.css(a, "visibility") != "hidden"; }, hidden: function(a) { return "hidden" == a.type || jQuery.css(a, "display") == "none" || jQuery.css(a, "visibility") == "hidden"; }, enabled: function(a) { return !a.disabled; }, disabled: function(a) { return a.disabled; }, checked: function(a) { return a.checked; }, selected: function(a) { return a.selected || jQuery.attr(a, "selected"); }, text: function(a) { return "text" == a.type; }, radio: function(a) { return "radio" == a.type; }, checkbox: function(a) { return "checkbox" == a.type; }, file: function(a) { return "file" == a.type; }, password: function(a) { return "password" == a.type; }, submit: function(a) { return "submit" == a.type; }, image: function(a) { return "image" == a.type; }, reset: function(a) { return "reset" == a.type; }, button: function(a) { return "button" == a.type || jQuery.nodeName(a, "button"); }, input: function(a) { return /input|select|textarea|button/i.test(a.nodeName); }, has: function(a, i, m) { return jQuery.find(m[3], a).length; }, header: function(a) { return /h\d/i.test(a.nodeName); }, animated: function(a) { return jQuery.grep(jQuery.timers, function(fn) { return a == fn.elem; }).length; } } }, parse: [/^(\[) *@?([\w-]+) *([!*$^~=]*) *('?"?)(.*?)\4 *\]/, /^(:)([\w-]+)\("?'?(.*?(\(.*?\))?[^(]*?)"?'?\)/, new RegExp("^([:.#]*)(" + chars + "+)")], multiFilter: function(expr, elems, not) { var old, cur = []; while (expr && expr != old) { old = expr; var f = jQuery.filter(expr, elems, not); expr = f.t.replace(/^\s*,\s*/, ""); cur = not ? elems = f.r : jQuery.merge(cur, f.r); } return cur; }, find: function(t, context) { if (typeof t != "string") return [t]; if (context && context.nodeType != 1 && context.nodeType != 9) return []; context = context || document; var ret = [context], done = [], last, nodeName; while (t && last != t) { var r = []; last = t; t = jQuery.trim(t); var foundToken = false, re = quickChild, m = re.exec(t); if (m) { nodeName = m[1].toUpperCase(); for (var i = 0; ret[i]; i++) for (var c = ret[i].firstChild; c; c = c.nextSibling) if (c.nodeType == 1 && (nodeName == "*" || c.nodeName.toUpperCase() == nodeName)) r.push(c); ret = r; t = t.replace(re, ""); if (t.indexOf(" ") == 0) continue; foundToken = true; } else { re = /^([>+~])\s*(\w*)/i; if ((m = re.exec(t)) != null) { r = []; var merge = {}; nodeName = m[2].toUpperCase(); m = m[1]; for (var j = 0, rl = ret.length; j < rl; j++) { var n = m == "~" || m == "+" ? ret[j].nextSibling : ret[j].firstChild; for (; n; n = n.nextSibling) if (n.nodeType == 1) { var id = jQuery.data(n); if (m == "~" && merge[id]) break; if (!nodeName || n.nodeName.toUpperCase() == nodeName) { if (m == "~") merge[id] = true; r.push(n); } if (m == "+") break; } } ret = r; t = jQuery.trim(t.replace(re, "")); foundToken = true; } } if (t && !foundToken) { if (!t.indexOf(",")) { if (context == ret[0]) ret.shift(); done = jQuery.merge(done, ret); r = ret = [context]; t = " " + t.substr(1, t.length); } else { var re2 = quickID; var m = re2.exec(t); if (m) { m = [0, m[2], m[3], m[1]]; } else { re2 = quickClass; m = re2.exec(t); } m[2] = m[2].replace(/\\/g, ""); var elem = ret[ret.length - 1]; if (m[1] == "#" && elem && elem.getElementById && !jQuery.isXMLDoc(elem)) { var oid = elem.getElementById(m[2]); if ((jQuery.browser.msie || jQuery.browser.opera) && oid && typeof oid.id == "string" && oid.id != m[2]) oid = jQuery('[@id="' + m[2] + '"]', elem)[0]; ret = r = oid && (!m[3] || jQuery.nodeName(oid, m[3])) ? [oid] : []; } else { for (var i = 0; ret[i]; i++) { var tag = m[1] == "#" && m[3] ? m[3] : m[1] != "" || m[0] == "" ? "*" : m[2]; if (tag == "*" && ret[i].nodeName.toLowerCase() == "object") tag = "param"; r = jQuery.merge(r, ret[i].getElementsByTagName(tag)); } if (m[1] == ".") r = jQuery.classFilter(r, m[2]); if (m[1] == "#") { var tmp = []; for (var i = 0; r[i]; i++) if (r[i].getAttribute("id") == m[2]) { tmp = [r[i]]; break; } r = tmp; } ret = r; } t = t.replace(re2, ""); } } if (t) { var val = jQuery.filter(t, r); ret = r = val.r; t = jQuery.trim(val.t); } } if (t) ret = []; if (ret && context == ret[0]) ret.shift(); done = jQuery.merge(done, ret); return done; }, classFilter: function(r, m, not) { m = " " + m + " "; var tmp = []; for (var i = 0; r[i]; i++) { var pass = (" " + r[i].className + " ").indexOf(m) >= 0; if (!not && pass || not && !pass) tmp.push(r[i]); } return tmp; }, filter: function(t, r, not) { var last; while (t && t != last) { last = t; var p = jQuery.parse, m; for (var i = 0; p[i]; i++) { m = p[i].exec(t); if (m) { t = t.substring(m[0].length); m[2] = m[2].replace(/\\/g, ""); break; } } if (!m) break; if (m[1] == ":" && m[2] == "not") r = isSimple.test(m[3]) ? jQuery.filter(m[3], r, true).r : jQuery(r).not(m[3]); else if (m[1] == ".") r = jQuery.classFilter(r, m[2], not); else if (m[1] == "[") { var tmp = [], type = m[3]; for (var i = 0, rl = r.length; i < rl; i++) { var a = r[i], z = a[jQuery.props[m[2]] || m[2]]; if (z == null || /href|src|selected/.test(m[2])) z = jQuery.attr(a, m[2]) || ''; if ((type == "" && !!z || type == "=" && z == m[5] || type == "!=" && z != m[5] || type == "^=" && z && !z.indexOf(m[5]) || type == "$=" && z.substr(z.length - m[5].length) == m[5] || (type == "*=" || type == "~=") && z.indexOf(m[5]) >= 0) ^ not) tmp.push(a); } r = tmp; } else if (m[1] == ":" && m[2] == "nth-child") { var merge = {}, tmp = [], test = /(-?)(\d*)n((?:\+|-)?\d*)/.exec(m[3] == "even" && "2n" || m[3] == "odd" && "2n+1" || !/\D/.test(m[3]) && "0n+" + m[3] || m[3]), first = (test[1] + (test[2] || 1)) - 0, last = test[3] - 0; for (var i = 0, rl = r.length; i < rl; i++) { var node = r[i], parentNode = node.parentNode, id = jQuery.data(parentNode); if (!merge[id]) { var c = 1; for (var n = parentNode.firstChild; n; n = n.nextSibling) if (n.nodeType == 1) n.nodeIndex = c++; merge[id] = true; } var add = false; if (first == 0) { if (node.nodeIndex == last) add = true; } else if ((node.nodeIndex - last) % first == 0 && (node.nodeIndex - last) / first >= 0) add = true; if (add ^ not) tmp.push(node); } r = tmp; } else { var fn = jQuery.expr[m[1]]; if (typeof fn == "object") fn = fn[m[2]]; if (typeof fn == "string") fn = eval("false||function(a,i){return " + fn + ";}"); r = jQuery.grep(r, function(elem, i) { return fn(elem, i, m, r); }, not); } } return { r: r, t: t }; }, dir: function(elem, dir) { var matched = [], cur = elem[dir]; while (cur && cur != document) { if (cur.nodeType == 1) matched.push(cur); cur = cur[dir]; } return matched; }, nth: function(cur, result, dir, elem) { result = result || 1; var num = 0; for (; cur; cur = cur[dir]) if (cur.nodeType == 1 && ++num == result) break; return cur; }, sibling: function(n, elem) { var r = []; for (; n; n = n.nextSibling) { if (n.nodeType == 1 && n != elem) r.push(n); } return r; } }); jQuery.event = { add: function(elem, types, handler, data) { if (elem.nodeType == 3 || elem.nodeType == 8) return; if (jQuery.browser.msie && elem.setInterval) elem = window; if (!handler.guid) handler.guid = this.guid++; if (data != undefined) { var fn = handler; handler = this.proxy(fn, function() { return fn.apply(this, arguments); }); handler.data = data; } var events = jQuery.data(elem, "events") || jQuery.data(elem, "events", {}), handle = jQuery.data(elem, "handle") || jQuery.data(elem, "handle", function() { if (typeof jQuery != "undefined" && !jQuery.event.triggered) return jQuery.event.handle.apply(arguments.callee.elem, arguments); }); handle.elem = elem; jQuery.each(types.split(/\s+/), function(index, type) { var parts = type.split("."); type = parts[0]; handler.type = parts[1]; var handlers = events[type]; if (!handlers) { handlers = events[type] = {}; if (!jQuery.event.special[type] || jQuery.event.special[type].setup.call(elem) === false) { if (elem.addEventListener) elem.addEventListener(type, handle, false); else if (elem.attachEvent) elem.attachEvent("on" + type, handle); } } handlers[handler.guid] = handler; jQuery.event.global[type] = true; }); elem = null; }, guid: 1, global: {}, remove: function(elem, types, handler) {
        if (elem.nodeType == 3 || elem.nodeType == 8) return; var events = jQuery.data(elem, "events"), ret, index; if (events) {
            if (types == undefined || (typeof types == "string" && types.charAt(0) == ".")) for (var type in events) this.remove(elem, type + (types || "")); else {
                if (types.type) { handler = types.handler; types = types.type; } jQuery.each(types.split(/\s+/), function(index, type) {
                    var parts = type.split("."); type = parts[0]; if (events[type]) {
                        if (handler) delete events[type][handler.guid]; else
                            for (handler in events[type]) if (!parts[1] || events[type][handler].type == parts[1]) delete events[type][handler]; for (ret in events[type]) break; if (!ret) { if (!jQuery.event.special[type] || jQuery.event.special[type].teardown.call(elem) === false) { if (elem.removeEventListener) elem.removeEventListener(type, jQuery.data(elem, "handle"), false); else if (elem.detachEvent) elem.detachEvent("on" + type, jQuery.data(elem, "handle")); } ret = null; delete events[type]; } 
                    } 
                });
            } for (ret in events) break; if (!ret) { var handle = jQuery.data(elem, "handle"); if (handle) handle.elem = null; jQuery.removeData(elem, "events"); jQuery.removeData(elem, "handle"); } 
        } 
    }, trigger: function(type, data, elem, donative, extra) { data = jQuery.makeArray(data); if (type.indexOf("!") >= 0) { type = type.slice(0, -1); var exclusive = true; } if (!elem) { if (this.global[type]) jQuery("*").add([window, document]).trigger(type, data); } else { if (elem.nodeType == 3 || elem.nodeType == 8) return undefined; var val, ret, fn = jQuery.isFunction(elem[type] || null), event = !data[0] || !data[0].preventDefault; if (event) { data.unshift({ type: type, target: elem, preventDefault: function() { }, stopPropagation: function() { }, timeStamp: now() }); data[0][expando] = true; } data[0].type = type; if (exclusive) data[0].exclusive = true; var handle = jQuery.data(elem, "handle"); if (handle) val = handle.apply(elem, data); if ((!fn || (jQuery.nodeName(elem, 'a') && type == "click")) && elem["on" + type] && elem["on" + type].apply(elem, data) === false) val = false; if (event) data.shift(); if (extra && jQuery.isFunction(extra)) { ret = extra.apply(elem, val == null ? data : data.concat(val)); if (ret !== undefined) val = ret; } if (fn && donative !== false && val !== false && !(jQuery.nodeName(elem, 'a') && type == "click")) { this.triggered = true; try { elem[type](); } catch (e) { } } this.triggered = false; } return val; }, handle: function(event) { var val, ret, namespace, all, handlers; event = arguments[0] = jQuery.event.fix(event || window.event); namespace = event.type.split("."); event.type = namespace[0]; namespace = namespace[1]; all = !namespace && !event.exclusive; handlers = (jQuery.data(this, "events") || {})[event.type]; for (var j in handlers) { var handler = handlers[j]; if (all || handler.type == namespace) { event.handler = handler; event.data = handler.data; ret = handler.apply(this, arguments); if (val !== false) val = ret; if (ret === false) { event.preventDefault(); event.stopPropagation(); } } } return val; }, fix: function(event) { if (event[expando] == true) return event; var originalEvent = event; event = { originalEvent: originalEvent }; var props = "altKey attrChange attrName bubbles button cancelable charCode clientX clientY ctrlKey currentTarget data detail eventPhase fromElement handler keyCode metaKey newValue originalTarget pageX pageY prevValue relatedNode relatedTarget screenX screenY shiftKey srcElement target timeStamp toElement type view wheelDelta which".split(" "); for (var i = props.length; i; i--) event[props[i]] = originalEvent[props[i]]; event[expando] = true; event.preventDefault = function() { if (originalEvent.preventDefault) originalEvent.preventDefault(); originalEvent.returnValue = false; }; event.stopPropagation = function() { if (originalEvent.stopPropagation) originalEvent.stopPropagation(); originalEvent.cancelBubble = true; }; event.timeStamp = event.timeStamp || now(); if (!event.target) event.target = event.srcElement || document; if (event.target.nodeType == 3) event.target = event.target.parentNode; if (!event.relatedTarget && event.fromElement) event.relatedTarget = event.fromElement == event.target ? event.toElement : event.fromElement; if (event.pageX == null && event.clientX != null) { var doc = document.documentElement, body = document.body; event.pageX = event.clientX + (doc && doc.scrollLeft || body && body.scrollLeft || 0) - (doc.clientLeft || 0); event.pageY = event.clientY + (doc && doc.scrollTop || body && body.scrollTop || 0) - (doc.clientTop || 0); } if (!event.which && ((event.charCode || event.charCode === 0) ? event.charCode : event.keyCode)) event.which = event.charCode || event.keyCode; if (!event.metaKey && event.ctrlKey) event.metaKey = event.ctrlKey; if (!event.which && event.button) event.which = (event.button & 1 ? 1 : (event.button & 2 ? 3 : (event.button & 4 ? 2 : 0))); return event; }, proxy: function(fn, proxy) { proxy.guid = fn.guid = fn.guid || proxy.guid || this.guid++; return proxy; }, special: { ready: { setup: function() { bindReady(); return; }, teardown: function() { return; } }, mouseenter: { setup: function() { if (jQuery.browser.msie) return false; jQuery(this).bind("mouseover", jQuery.event.special.mouseenter.handler); return true; }, teardown: function() { if (jQuery.browser.msie) return false; jQuery(this).unbind("mouseover", jQuery.event.special.mouseenter.handler); return true; }, handler: function(event) { if (withinElement(event, this)) return true; event.type = "mouseenter"; return jQuery.event.handle.apply(this, arguments); } }, mouseleave: { setup: function() { if (jQuery.browser.msie) return false; jQuery(this).bind("mouseout", jQuery.event.special.mouseleave.handler); return true; }, teardown: function() { if (jQuery.browser.msie) return false; jQuery(this).unbind("mouseout", jQuery.event.special.mouseleave.handler); return true; }, handler: function(event) { if (withinElement(event, this)) return true; event.type = "mouseleave"; return jQuery.event.handle.apply(this, arguments); } }}
    }; jQuery.fn.extend({ bind: function(type, data, fn) { return type == "unload" ? this.one(type, data, fn) : this.each(function() { jQuery.event.add(this, type, fn || data, fn && data); }); }, one: function(type, data, fn) { var one = jQuery.event.proxy(fn || data, function(event) { jQuery(this).unbind(event, one); return (fn || data).apply(this, arguments); }); return this.each(function() { jQuery.event.add(this, type, one, fn && data); }); }, unbind: function(type, fn) { return this.each(function() { jQuery.event.remove(this, type, fn); }); }, trigger: function(type, data, fn) { return this.each(function() { jQuery.event.trigger(type, data, this, true, fn); }); }, triggerHandler: function(type, data, fn) { return this[0] && jQuery.event.trigger(type, data, this[0], false, fn); }, toggle: function(fn) { var args = arguments, i = 1; while (i < args.length) jQuery.event.proxy(fn, args[i++]); return this.click(jQuery.event.proxy(fn, function(event) { this.lastToggle = (this.lastToggle || 0) % i; event.preventDefault(); return args[this.lastToggle++].apply(this, arguments) || false; })); }, hover: function(fnOver, fnOut) { return this.bind('mouseenter', fnOver).bind('mouseleave', fnOut); }, ready: function(fn) {
        bindReady(); if (jQuery.isReady) fn.call(document, jQuery); else
            jQuery.readyList.push(function() { return fn.call(this, jQuery); }); return this;
    } 
    }); jQuery.extend({ isReady: false, readyList: [], ready: function() { if (!jQuery.isReady) { jQuery.isReady = true; if (jQuery.readyList) { jQuery.each(jQuery.readyList, function() { this.call(document); }); jQuery.readyList = null; } jQuery(document).triggerHandler("ready"); } } }); var readyBound = false; function bindReady() { if (readyBound) return; readyBound = true; if (document.addEventListener && !jQuery.browser.opera) document.addEventListener("DOMContentLoaded", jQuery.ready, false); if (jQuery.browser.msie && window == top) (function() { if (jQuery.isReady) return; try { document.documentElement.doScroll("left"); } catch (error) { setTimeout(arguments.callee, 0); return; } jQuery.ready(); })(); if (jQuery.browser.opera) document.addEventListener("DOMContentLoaded", function() { if (jQuery.isReady) return; for (var i = 0; i < document.styleSheets.length; i++) if (document.styleSheets[i].disabled) { setTimeout(arguments.callee, 0); return; } jQuery.ready(); }, false); if (jQuery.browser.safari) { var numStyles; (function() { if (jQuery.isReady) return; if (document.readyState != "loaded" && document.readyState != "complete") { setTimeout(arguments.callee, 0); return; } if (numStyles === undefined) numStyles = jQuery("style, link[rel=stylesheet]").length; if (document.styleSheets.length != numStyles) { setTimeout(arguments.callee, 0); return; } jQuery.ready(); })(); } jQuery.event.add(window, "load", jQuery.ready); } jQuery.each(("blur,focus,load,resize,scroll,unload,click,dblclick," + "mousedown,mouseup,mousemove,mouseover,mouseout,change,select," + "submit,keydown,keypress,keyup,error").split(","), function(i, name) { jQuery.fn[name] = function(fn) { return fn ? this.bind(name, fn) : this.trigger(name); }; }); var withinElement = function(event, elem) { var parent = event.relatedTarget; while (parent && parent != elem) try { parent = parent.parentNode; } catch (error) { parent = elem; } return parent == elem; }; jQuery(window).bind("unload", function() { jQuery("*").add(document).unbind(); }); jQuery.fn.extend({ _load: jQuery.fn.load, load: function(url, params, callback) { if (typeof url != 'string') return this._load(url); var off = url.indexOf(" "); if (off >= 0) { var selector = url.slice(off, url.length); url = url.slice(0, off); } callback = callback || function() { }; var type = "GET"; if (params) if (jQuery.isFunction(params)) { callback = params; params = null; } else { params = jQuery.param(params); type = "POST"; } var self = this; jQuery.ajax({ url: url, type: type, dataType: "html", data: params, complete: function(res, status) { if (status == "success" || status == "notmodified") self.html(selector ? jQuery("<div/>").append(res.responseText.replace(/<script(.|\s)*?\/script>/g, "")).find(selector) : res.responseText); self.each(callback, [res.responseText, status, res]); } }); return this; }, serialize: function() { return jQuery.param(this.serializeArray()); }, serializeArray: function() { return this.map(function() { return jQuery.nodeName(this, "form") ? jQuery.makeArray(this.elements) : this; }).filter(function() { return this.name && !this.disabled && (this.checked || /select|textarea/i.test(this.nodeName) || /text|hidden|password/i.test(this.type)); }).map(function(i, elem) { var val = jQuery(this).val(); return val == null ? null : val.constructor == Array ? jQuery.map(val, function(val, i) { return { name: elem.name, value: val }; }) : { name: elem.name, value: val }; }).get(); } }); jQuery.each("ajaxStart,ajaxStop,ajaxComplete,ajaxError,ajaxSuccess,ajaxSend".split(","), function(i, o) { jQuery.fn[o] = function(f) { return this.bind(o, f); }; }); var jsc = now(); jQuery.extend({ get: function(url, data, callback, type) { if (jQuery.isFunction(data)) { callback = data; data = null; } return jQuery.ajax({ type: "GET", url: url, data: data, success: callback, dataType: type }); }, getScript: function(url, callback) { return jQuery.get(url, null, callback, "script"); }, getJSON: function(url, data, callback) { return jQuery.get(url, data, callback, "json"); }, post: function(url, data, callback, type) { if (jQuery.isFunction(data)) { callback = data; data = {}; } return jQuery.ajax({ type: "POST", url: url, data: data, success: callback, dataType: type }); }, ajaxSetup: function(settings) { jQuery.extend(jQuery.ajaxSettings, settings); }, ajaxSettings: { url: location.href, global: true, type: "GET", timeout: 0, contentType: "application/x-www-form-urlencoded", processData: true, async: true, data: null, username: null, password: null, accepts: { xml: "application/xml, text/xml", html: "text/html", script: "text/javascript, application/javascript", json: "application/json, text/javascript", text: "text/plain", _default: "*/*"} }, lastModified: {}, ajax: function(s) {
        s = jQuery.extend(true, s, jQuery.extend(true, {}, jQuery.ajaxSettings, s)); var jsonp, jsre = /=\?(&|$)/g, status, data, type = s.type.toUpperCase(); if (s.data && s.processData && typeof s.data != "string") s.data = jQuery.param(s.data); if (s.dataType == "jsonp") { if (type == "GET") { if (!s.url.match(jsre)) s.url += (s.url.match(/\?/) ? "&" : "?") + (s.jsonp || "callback") + "=?"; } else if (!s.data || !s.data.match(jsre)) s.data = (s.data ? s.data + "&" : "") + (s.jsonp || "callback") + "=?"; s.dataType = "json"; } if (s.dataType == "json" && (s.data && s.data.match(jsre) || s.url.match(jsre))) { jsonp = "jsonp" + jsc++; if (s.data) s.data = (s.data + "").replace(jsre, "=" + jsonp + "$1"); s.url = s.url.replace(jsre, "=" + jsonp + "$1"); s.dataType = "script"; window[jsonp] = function(tmp) { data = tmp; success(); complete(); window[jsonp] = undefined; try { delete window[jsonp]; } catch (e) { } if (head) head.removeChild(script); }; } if (s.dataType == "script" && s.cache == null) s.cache = false; if (s.cache === false && type == "GET") { var ts = now(); var ret = s.url.replace(/(\?|&)_=.*?(&|$)/, "$1_=" + ts + "$2"); s.url = ret + ((ret == s.url) ? (s.url.match(/\?/) ? "&" : "?") + "_=" + ts : ""); } if (s.data && type == "GET") { s.url += (s.url.match(/\?/) ? "&" : "?") + s.data; s.data = null; } if (s.global && !jQuery.active++) jQuery.event.trigger("ajaxStart"); var remote = /^(?:\w+:)?\/\/([^\/?#]+)/; if (s.dataType == "script" && type == "GET" && remote.test(s.url) && remote.exec(s.url)[1] != location.host) { var head = document.getElementsByTagName("head")[0]; var script = document.createElement("script"); script.src = s.url; if (s.scriptCharset) script.charset = s.scriptCharset; if (!jsonp) { var done = false; script.onload = script.onreadystatechange = function() { if (!done && (!this.readyState || this.readyState == "loaded" || this.readyState == "complete")) { done = true; success(); complete(); head.removeChild(script); } }; } head.appendChild(script); return undefined; } var requestDone = false; var xhr = window.ActiveXObject ? new ActiveXObject("Microsoft.XMLHTTP") : new XMLHttpRequest(); if (s.username) xhr.open(type, s.url, s.async, s.username, s.password); else
            xhr.open(type, s.url, s.async); try { if (s.data) xhr.setRequestHeader("Content-Type", s.contentType); if (s.ifModified) xhr.setRequestHeader("If-Modified-Since", jQuery.lastModified[s.url] || "Thu, 01 Jan 1970 00:00:00 GMT"); xhr.setRequestHeader("X-Requested-With", "XMLHttpRequest"); xhr.setRequestHeader("Accept", s.dataType && s.accepts[s.dataType] ? s.accepts[s.dataType] + ", */*" : s.accepts._default); } catch (e) { } if (s.beforeSend && s.beforeSend(xhr, s) === false) { s.global && jQuery.active--; xhr.abort(); return false; } if (s.global) jQuery.event.trigger("ajaxSend", [xhr, s]); var onreadystatechange = function(isTimeout) {
                if (!requestDone && xhr && (xhr.readyState == 4 || isTimeout == "timeout")) {
                    requestDone = true; if (ival) { clearInterval(ival); ival = null; } status = isTimeout == "timeout" && "timeout" || !jQuery.httpSuccess(xhr) && "error" || s.ifModified && jQuery.httpNotModified(xhr, s.url) && "notmodified" || "success"; if (status == "success") { try { data = jQuery.httpData(xhr, s.dataType, s.dataFilter); } catch (e) { status = "parsererror"; } } if (status == "success") { var modRes; try { modRes = xhr.getResponseHeader("Last-Modified"); } catch (e) { } if (s.ifModified && modRes) jQuery.lastModified[s.url] = modRes; if (!jsonp) success(); } else
                        jQuery.handleError(s, xhr, status); complete(); if (s.async) xhr = null;
                } 
            }; if (s.async) { var ival = setInterval(onreadystatechange, 13); if (s.timeout > 0) setTimeout(function() { if (xhr) { xhr.abort(); if (!requestDone) onreadystatechange("timeout"); } }, s.timeout); } try { xhr.send(s.data); } catch (e) { jQuery.handleError(s, xhr, null, e); } if (!s.async) onreadystatechange(); function success() { if (s.success) s.success(data, status); if (s.global) jQuery.event.trigger("ajaxSuccess", [xhr, s]); } function complete() { if (s.complete) s.complete(xhr, status); if (s.global) jQuery.event.trigger("ajaxComplete", [xhr, s]); if (s.global && ! --jQuery.active) jQuery.event.trigger("ajaxStop"); } return xhr;
    }, handleError: function(s, xhr, status, e) { if (s.error) s.error(xhr, status, e); if (s.global) jQuery.event.trigger("ajaxError", [xhr, s, e]); }, active: 0, httpSuccess: function(xhr) { try { return !xhr.status && location.protocol == "file:" || (xhr.status >= 200 && xhr.status < 300) || xhr.status == 304 || xhr.status == 1223 || jQuery.browser.safari && xhr.status == undefined; } catch (e) { } return false; }, httpNotModified: function(xhr, url) { try { var xhrRes = xhr.getResponseHeader("Last-Modified"); return xhr.status == 304 || xhrRes == jQuery.lastModified[url] || jQuery.browser.safari && xhr.status == undefined; } catch (e) { } return false; }, httpData: function(xhr, type, filter) { var ct = xhr.getResponseHeader("content-type"), xml = type == "xml" || !type && ct && ct.indexOf("xml") >= 0, data = xml ? xhr.responseXML : xhr.responseText; if (xml && data.documentElement.tagName == "parsererror") throw "parsererror"; if (filter) data = filter(data, type); if (type == "script") jQuery.globalEval(data); if (type == "json") data = eval("(" + data + ")"); return data; }, param: function(a) {
        var s = []; if (a.constructor == Array || a.jquery) jQuery.each(a, function() { s.push(encodeURIComponent(this.name) + "=" + encodeURIComponent(this.value)); }); else
            for (var j in a) if (a[j] && a[j].constructor == Array) jQuery.each(a[j], function() { s.push(encodeURIComponent(j) + "=" + encodeURIComponent(this)); }); else
            s.push(encodeURIComponent(j) + "=" + encodeURIComponent(jQuery.isFunction(a[j]) ? a[j]() : a[j])); return s.join("&").replace(/%20/g, "+");
    } 
    }); jQuery.fn.extend({ show: function(speed, callback) { return speed ? this.animate({ height: "show", width: "show", opacity: "show" }, speed, callback) : this.filter(":hidden").each(function() { this.style.display = this.oldblock || ""; if (jQuery.css(this, "display") == "none") { var elem = jQuery("<" + this.tagName + " />").appendTo("body"); this.style.display = elem.css("display"); if (this.style.display == "none") this.style.display = "block"; elem.remove(); } }).end(); }, hide: function(speed, callback) { return speed ? this.animate({ height: "hide", width: "hide", opacity: "hide" }, speed, callback) : this.filter(":visible").each(function() { this.oldblock = this.oldblock || jQuery.css(this, "display"); this.style.display = "none"; }).end(); }, _toggle: jQuery.fn.toggle, toggle: function(fn, fn2) { return jQuery.isFunction(fn) && jQuery.isFunction(fn2) ? this._toggle.apply(this, arguments) : fn ? this.animate({ height: "toggle", width: "toggle", opacity: "toggle" }, fn, fn2) : this.each(function() { jQuery(this)[jQuery(this).is(":hidden") ? "show" : "hide"](); }); }, slideDown: function(speed, callback) { return this.animate({ height: "show" }, speed, callback); }, slideUp: function(speed, callback) { return this.animate({ height: "hide" }, speed, callback); }, slideToggle: function(speed, callback) { return this.animate({ height: "toggle" }, speed, callback); }, fadeIn: function(speed, callback) { return this.animate({ opacity: "show" }, speed, callback); }, fadeOut: function(speed, callback) { return this.animate({ opacity: "hide" }, speed, callback); }, fadeTo: function(speed, to, callback) { return this.animate({ opacity: to }, speed, callback); }, animate: function(prop, speed, easing, callback) {
        var optall = jQuery.speed(speed, easing, callback); return this[optall.queue === false ? "each" : "queue"](function() {
            if (this.nodeType != 1) return false; var opt = jQuery.extend({}, optall), p, hidden = jQuery(this).is(":hidden"), self = this; for (p in prop) { if (prop[p] == "hide" && hidden || prop[p] == "show" && !hidden) return opt.complete.call(this); if (p == "height" || p == "width") { opt.display = jQuery.css(this, "display"); opt.overflow = this.style.overflow; } } if (opt.overflow != null) this.style.overflow = "hidden"; opt.curAnim = jQuery.extend({}, prop); jQuery.each(prop, function(name, val) {
                var e = new jQuery.fx(self, opt, name); if (/toggle|show|hide/.test(val)) e[val == "toggle" ? hidden ? "show" : "hide" : val](prop); else {
                    var parts = val.toString().match(/^([+-]=)?([\d+-.]+)(.*)$/), start = e.cur(true) || 0; if (parts) { var end = parseFloat(parts[2]), unit = parts[3] || "px"; if (unit != "px") { self.style[name] = (end || 1) + unit; start = ((end || 1) / e.cur(true)) * start; self.style[name] = start + unit; } if (parts[1]) end = ((parts[1] == "-=" ? -1 : 1) * end) + start; e.custom(start, end, unit); } else
                        e.custom(start, val, "");
                } 
            }); return true;
        });
    }, queue: function(type, fn) { if (jQuery.isFunction(type) || (type && type.constructor == Array)) { fn = type; type = "fx"; } if (!type || (typeof type == "string" && !fn)) return queue(this[0], type); return this.each(function() { if (fn.constructor == Array) queue(this, type, fn); else { queue(this, type).push(fn); if (queue(this, type).length == 1) fn.call(this); } }); }, stop: function(clearQueue, gotoEnd) { var timers = jQuery.timers; if (clearQueue) this.queue([]); this.each(function() { for (var i = timers.length - 1; i >= 0; i--) if (timers[i].elem == this) { if (gotoEnd) timers[i](true); timers.splice(i, 1); } }); if (!gotoEnd) this.dequeue(); return this; } 
    }); var queue = function(elem, type, array) { if (elem) { type = type || "fx"; var q = jQuery.data(elem, type + "queue"); if (!q || array) q = jQuery.data(elem, type + "queue", jQuery.makeArray(array)); } return q; }; jQuery.fn.dequeue = function(type) { type = type || "fx"; return this.each(function() { var q = queue(this, type); q.shift(); if (q.length) q[0].call(this); }); }; jQuery.extend({ speed: function(speed, easing, fn) { var opt = speed && speed.constructor == Object ? speed : { complete: fn || !fn && easing || jQuery.isFunction(speed) && speed, duration: speed, easing: fn && easing || easing && easing.constructor != Function && easing }; opt.duration = (opt.duration && opt.duration.constructor == Number ? opt.duration : jQuery.fx.speeds[opt.duration]) || jQuery.fx.speeds.def; opt.old = opt.complete; opt.complete = function() { if (opt.queue !== false) jQuery(this).dequeue(); if (jQuery.isFunction(opt.old)) opt.old.call(this); }; return opt; }, easing: { linear: function(p, n, firstNum, diff) { return firstNum + diff * p; }, swing: function(p, n, firstNum, diff) { return ((-Math.cos(p * Math.PI) / 2) + 0.5) * diff + firstNum; } }, timers: [], timerId: null, fx: function(elem, options, prop) { this.options = options; this.elem = elem; this.prop = prop; if (!options.orig) options.orig = {}; } }); jQuery.fx.prototype = { update: function() { if (this.options.step) this.options.step.call(this.elem, this.now, this); (jQuery.fx.step[this.prop] || jQuery.fx.step._default)(this); if (this.prop == "height" || this.prop == "width") this.elem.style.display = "block"; }, cur: function(force) { if (this.elem[this.prop] != null && this.elem.style[this.prop] == null) return this.elem[this.prop]; var r = parseFloat(jQuery.css(this.elem, this.prop, force)); return r && r > -10000 ? r : parseFloat(jQuery.curCSS(this.elem, this.prop)) || 0; }, custom: function(from, to, unit) { this.startTime = now(); this.start = from; this.end = to; this.unit = unit || this.unit || "px"; this.now = this.start; this.pos = this.state = 0; this.update(); var self = this; function t(gotoEnd) { return self.step(gotoEnd); } t.elem = this.elem; jQuery.timers.push(t); if (jQuery.timerId == null) { jQuery.timerId = setInterval(function() { var timers = jQuery.timers; for (var i = 0; i < timers.length; i++) if (!timers[i]()) timers.splice(i--, 1); if (!timers.length) { clearInterval(jQuery.timerId); jQuery.timerId = null; } }, 13); } }, show: function() { this.options.orig[this.prop] = jQuery.attr(this.elem.style, this.prop); this.options.show = true; this.custom(0, this.cur()); if (this.prop == "width" || this.prop == "height") this.elem.style[this.prop] = "1px"; jQuery(this.elem).show(); }, hide: function() { this.options.orig[this.prop] = jQuery.attr(this.elem.style, this.prop); this.options.hide = true; this.custom(this.cur(), 0); }, step: function(gotoEnd) { var t = now(); if (gotoEnd || t > this.options.duration + this.startTime) { this.now = this.end; this.pos = this.state = 1; this.update(); this.options.curAnim[this.prop] = true; var done = true; for (var i in this.options.curAnim) if (this.options.curAnim[i] !== true) done = false; if (done) { if (this.options.display != null) { this.elem.style.overflow = this.options.overflow; this.elem.style.display = this.options.display; if (jQuery.css(this.elem, "display") == "none") this.elem.style.display = "block"; } if (this.options.hide) this.elem.style.display = "none"; if (this.options.hide || this.options.show) for (var p in this.options.curAnim) jQuery.attr(this.elem.style, p, this.options.orig[p]); } if (done) this.options.complete.call(this.elem); return false; } else { var n = t - this.startTime; this.state = n / this.options.duration; this.pos = jQuery.easing[this.options.easing || (jQuery.easing.swing ? "swing" : "linear")](this.state, n, 0, 1, this.options.duration); this.now = this.start + ((this.end - this.start) * this.pos); this.update(); } return true; } }; jQuery.extend(jQuery.fx, { speeds: { slow: 600, fast: 200, def: 400 }, step: { scrollLeft: function(fx) { fx.elem.scrollLeft = fx.now; }, scrollTop: function(fx) { fx.elem.scrollTop = fx.now; }, opacity: function(fx) { jQuery.attr(fx.elem.style, "opacity", fx.now); }, _default: function(fx) { fx.elem.style[fx.prop] = fx.now + fx.unit; } } }); jQuery.fn.offset = function() { var left = 0, top = 0, elem = this[0], results; if (elem) with (jQuery.browser) { var parent = elem.parentNode, offsetChild = elem, offsetParent = elem.offsetParent, doc = elem.ownerDocument, safari2 = safari && parseInt(version) < 522 && !/adobeair/i.test(userAgent), css = jQuery.curCSS, fixed = css(elem, "position") == "fixed"; if (elem.getBoundingClientRect) { var box = elem.getBoundingClientRect(); add(box.left + Math.max(doc.documentElement.scrollLeft, doc.body.scrollLeft), box.top + Math.max(doc.documentElement.scrollTop, doc.body.scrollTop)); add(-doc.documentElement.clientLeft, -doc.documentElement.clientTop); } else { add(elem.offsetLeft, elem.offsetTop); while (offsetParent) { add(offsetParent.offsetLeft, offsetParent.offsetTop); if (mozilla && !/^t(able|d|h)$/i.test(offsetParent.tagName) || safari && !safari2) border(offsetParent); if (!fixed && css(offsetParent, "position") == "fixed") fixed = true; offsetChild = /^body$/i.test(offsetParent.tagName) ? offsetChild : offsetParent; offsetParent = offsetParent.offsetParent; } while (parent && parent.tagName && !/^body|html$/i.test(parent.tagName)) { if (!/^inline|table.*$/i.test(css(parent, "display"))) add(-parent.scrollLeft, -parent.scrollTop); if (mozilla && css(parent, "overflow") != "visible") border(parent); parent = parent.parentNode; } if ((safari2 && (fixed || css(offsetChild, "position") == "absolute")) || (mozilla && css(offsetChild, "position") != "absolute")) add(-doc.body.offsetLeft, -doc.body.offsetTop); if (fixed) add(Math.max(doc.documentElement.scrollLeft, doc.body.scrollLeft), Math.max(doc.documentElement.scrollTop, doc.body.scrollTop)); } results = { top: top, left: left }; } function border(elem) { add(jQuery.curCSS(elem, "borderLeftWidth", true), jQuery.curCSS(elem, "borderTopWidth", true)); } function add(l, t) { left += parseInt(l, 10) || 0; top += parseInt(t, 10) || 0; } return results; }; jQuery.fn.extend({ position: function() { var left = 0, top = 0, results; if (this[0]) { var offsetParent = this.offsetParent(), offset = this.offset(), parentOffset = /^body|html$/i.test(offsetParent[0].tagName) ? { top: 0, left: 0} : offsetParent.offset(); offset.top -= num(this, 'marginTop'); offset.left -= num(this, 'marginLeft'); parentOffset.top += num(offsetParent, 'borderTopWidth'); parentOffset.left += num(offsetParent, 'borderLeftWidth'); results = { top: offset.top - parentOffset.top, left: offset.left - parentOffset.left }; } return results; }, offsetParent: function() { var offsetParent = this[0].offsetParent; while (offsetParent && (!/^body|html$/i.test(offsetParent.tagName) && jQuery.css(offsetParent, 'position') == 'static')) offsetParent = offsetParent.offsetParent; return jQuery(offsetParent); } }); jQuery.each(['Left', 'Top'], function(i, name) { var method = 'scroll' + name; jQuery.fn[method] = function(val) { if (!this[0]) return; return val != undefined ? this.each(function() { this == window || this == document ? window.scrollTo(!i ? val : jQuery(window).scrollLeft(), i ? val : jQuery(window).scrollTop()) : this[method] = val; }) : this[0] == window || this[0] == document ? self[i ? 'pageYOffset' : 'pageXOffset'] || jQuery.boxModel && document.documentElement[method] || document.body[method] : this[0][method]; }; }); jQuery.each(["Height", "Width"], function(i, name) { var tl = i ? "Left" : "Top", br = i ? "Right" : "Bottom"; jQuery.fn["inner" + name] = function() { return this[name.toLowerCase()]() + num(this, "padding" + tl) + num(this, "padding" + br); }; jQuery.fn["outer" + name] = function(margin) { return this["inner" + name]() + num(this, "border" + tl + "Width") + num(this, "border" + br + "Width") + (margin ? num(this, "margin" + tl) + num(this, "margin" + br) : 0); }; });
})();


////////////////////Slider

var currentThem = 'Default';
$(document).ready(function() {

    if ($.cookie('Theme')) {
        currentThem = $.cookie('Theme');
    }

    var cssObjLink = {
        'color': 'Black'
    }
    var cssObjLinkHover = {
        'color': 'White'
    }
    var cssObj = {
        'background-image': 'url(/App_Themes/' + currentThem + '/Images/rd_image_show.jpg)',
        'margin-top': '0px',
        'color': 'black'
    }
    var cssObjHover = {
        'background-image': 'url(/App_Themes/' + currentThem + '/Images/rd_image_show_hover.jpg)',
        'margin-top': '1px',
        'color': 'White'
    }
    $('#imlink2').css(cssObjLink);
    $('#imlink3').css(cssObjLink);
    $('#imlink4').css(cssObjLink);
    $('#imlink5').css(cssObjLink);
    $('#im2').css(cssObj);
    $('#im3').css(cssObj);
    $('#im4').css(cssObj);
    $('#im5').css(cssObj);


    $("#im1").bind("mouseenter", function() {
        $("#imageshow1").show();
        $("#imageshow2").hide();
        $("#imageshow3").hide();
        $("#imageshow4").hide();
        $("#imageshow5").hide();

        $('#im1').css(cssObj);
        $('#im2').css(cssObj);
        $('#im3').css(cssObj);
        $('#im4').css(cssObj);
        $('#im5').css(cssObj);
        $('#imlink1').css(cssObjLink);
        $('#imlink2').css(cssObjLink);
        $('#imlink3').css(cssObjLink);
        $('#imlink4').css(cssObjLink);
        $('#imlink5').css(cssObjLink);
        $('#im1').css(cssObjHover);
        $('#imlink1').css(cssObjLinkHover);
    });
    $("#im2").bind("mouseenter", function() {
        $("#imageshow2").show();
        $("#imageshow1").hide();
        $("#imageshow3").hide();
        $("#imageshow4").hide();
        $("#imageshow5").hide();

        $('#im1').css(cssObj);
        $('#im2').css(cssObj);
        $('#im3').css(cssObj);
        $('#im4').css(cssObj);
        $('#im5').css(cssObj);
        $('#imlink1').css(cssObjLink);
        $('#imlink2').css(cssObjLink);
        $('#imlink3').css(cssObjLink);
        $('#imlink4').css(cssObjLink);
        $('#imlink5').css(cssObjLink);
        $('#im2').css(cssObjHover);
        $('#imlink2').css(cssObjLinkHover);
    });
    $("#im3").bind("mouseenter", function() {
        $("#imageshow3").show();
        $("#imageshow2").hide();
        $("#imageshow1").hide();
        $("#imageshow4").hide();
        $("#imageshow5").hide();

        $('#im1').css(cssObj);
        $('#im2').css(cssObj);
        $('#im3').css(cssObj);
        $('#im4').css(cssObj);
        $('#im5').css(cssObj);
        $('#imlink1').css(cssObjLink);
        $('#imlink2').css(cssObjLink);
        $('#imlink3').css(cssObjLink);
        $('#imlink4').css(cssObjLink);
        $('#imlink5').css(cssObjLink);
        $('#im3').css(cssObjHover);
        $('#imlink3').css(cssObjLinkHover);
    });
    $("#im4").bind("mouseenter", function() {
        $("#imageshow4").show();
        $("#imageshow2").hide();
        $("#imageshow1").hide();
        $("#imageshow3").hide();
        $("#imageshow5").hide();

        $('#im1').css(cssObj);
        $('#im2').css(cssObj);
        $('#im3').css(cssObj);
        $('#im4').css(cssObj);
        $('#im5').css(cssObj);
        $('#imlink1').css(cssObjLink);
        $('#imlink2').css(cssObjLink);
        $('#imlink3').css(cssObjLink);
        $('#imlink4').css(cssObjLink);
        $('#imlink5').css(cssObjLink);
        $('#im4').css(cssObjHover);
        $('#imlink4').css(cssObjLinkHover);
    });
    $("#im5").bind("mouseenter", function() {
        $("#imageshow5").show();
        $("#imageshow2").hide();
        $("#imageshow1").hide();
        $("#imageshow3").hide();
        $("#imageshow4").hide();

        $('#im1').css(cssObj);
        $('#im2').css(cssObj);
        $('#im3').css(cssObj);
        $('#im4').css(cssObj);
        $('#im5').css(cssObj);
        $('#imlink1').css(cssObjLink);
        $('#imlink2').css(cssObjLink);
        $('#imlink3').css(cssObjLink);
        $('#imlink4').css(cssObjLink);
        $('#imlink5').css(cssObjLink);
        $('#im5').css(cssObjHover);
        $('#imlink5').css(cssObjLinkHover);
    });
});


//////////////////////jquery-ui-personal


; (function($) {
    var _remove = $.fn.remove; $.fn.remove = function() { $("*", this).add(this).triggerHandler("remove"); return _remove.apply(this, arguments); }; function isVisible(element) {
        function checkStyles(element) { var style = element.style; return (style.display != 'none' && style.visibility != 'hidden'); }
        var visible = checkStyles(element); (visible && $.each($.dir(element, 'parentNode'), function() { return (visible = checkStyles(this)); })); return visible;
    }
    $.extend($.expr[':'], { data: function(a, i, m) { return $.data(a, m[3]); }, tabbable: function(a, i, m) { var nodeName = a.nodeName.toLowerCase(); return (a.tabIndex >= 0 && (('a' == nodeName && a.href) || (/input|select|textarea|button/.test(nodeName) && 'hidden' != a.type && !a.disabled)) && isVisible(a)); } }); $.keyCode = { BACKSPACE: 8, CAPS_LOCK: 20, COMMA: 188, CONTROL: 17, DELETE: 46, DOWN: 40, END: 35, ENTER: 13, ESCAPE: 27, HOME: 36, INSERT: 45, LEFT: 37, NUMPAD_ADD: 107, NUMPAD_DECIMAL: 110, NUMPAD_DIVIDE: 111, NUMPAD_ENTER: 108, NUMPAD_MULTIPLY: 106, NUMPAD_SUBTRACT: 109, PAGE_DOWN: 34, PAGE_UP: 33, PERIOD: 190, RIGHT: 39, SHIFT: 16, SPACE: 32, TAB: 9, UP: 38 }; function getter(namespace, plugin, method, args) {
        function getMethods(type) { var methods = $[namespace][plugin][type] || []; return (typeof methods == 'string' ? methods.split(/,?\s+/) : methods); }
        var methods = getMethods('getter'); if (args.length == 1 && typeof args[0] == 'string') { methods = methods.concat(getMethods('getterSetter')); }
        return ($.inArray(method, methods) != -1);
    }
    $.widget = function(name, prototype) {
        var namespace = name.split(".")[0]; name = name.split(".")[1]; $.fn[name] = function(options) {
            var isMethodCall = (typeof options == 'string'), args = Array.prototype.slice.call(arguments, 1); if (isMethodCall && options.substring(0, 1) == '_') { return this; }
            if (isMethodCall && getter(namespace, name, options, args)) { var instance = $.data(this[0], name); return (instance ? instance[options].apply(instance, args) : undefined); }
            return this.each(function() { var instance = $.data(this, name); (!instance && !isMethodCall && $.data(this, name, new $[namespace][name](this, options))); (instance && isMethodCall && $.isFunction(instance[options]) && instance[options].apply(instance, args)); });
        }; $[namespace][name] = function(element, options) { var self = this; this.widgetName = name; this.widgetEventPrefix = $[namespace][name].eventPrefix || name; this.widgetBaseClass = namespace + '-' + name; this.options = $.extend({}, $.widget.defaults, $[namespace][name].defaults, $.metadata && $.metadata.get(element)[name], options); this.element = $(element).bind('setData.' + name, function(e, key, value) { return self._setData(key, value); }).bind('getData.' + name, function(e, key) { return self._getData(key); }).bind('remove', function() { return self.destroy(); }); this._init(); }; $[namespace][name].prototype = $.extend({}, $.widget.prototype, prototype); $[namespace][name].getterSetter = 'option';
    }; $.widget.prototype = { _init: function() { }, destroy: function() { this.element.removeData(this.widgetName); }, option: function(key, value) {
        var options = key, self = this; if (typeof key == "string") {
            if (value === undefined) { return this._getData(key); }
            options = {}; options[key] = value;
        }
        $.each(options, function(key, value) { self._setData(key, value); });
    }, _getData: function(key) { return this.options[key]; }, _setData: function(key, value) { this.options[key] = value; if (key == 'disabled') { this.element[value ? 'addClass' : 'removeClass'](this.widgetBaseClass + '-disabled'); } }, enable: function() { this._setData('disabled', false); }, disable: function() { this._setData('disabled', true); }, _trigger: function(type, e, data) { var eventName = (type == this.widgetEventPrefix ? type : this.widgetEventPrefix + type); e = e || $.event.fix({ type: eventName, target: this.element[0] }); return this.element.triggerHandler(eventName, [e, data], this.options[type]); } 
    }; $.widget.defaults = { disabled: false }; $.ui = { plugin: { add: function(module, option, set) { var proto = $.ui[module].prototype; for (var i in set) { proto.plugins[i] = proto.plugins[i] || []; proto.plugins[i].push([option, set[i]]); } }, call: function(instance, name, args) {
        var set = instance.plugins[name]; if (!set) { return; }
        for (var i = 0; i < set.length; i++) { if (instance.options[set[i][0]]) { set[i][1].apply(instance.element, args); } } 
    } 
    }, cssCache: {}, css: function(name) {
        if ($.ui.cssCache[name]) { return $.ui.cssCache[name]; }
        var tmp = $('<div class="ui-gen">').addClass(name).css({ position: 'absolute', top: '-5000px', left: '-5000px', display: 'block' }).appendTo('body'); $.ui.cssCache[name] = !!((!(/auto|default/).test(tmp.css('cursor')) || (/^[1-9]/).test(tmp.css('height')) || (/^[1-9]/).test(tmp.css('width')) || !(/none/).test(tmp.css('backgroundImage')) || !(/transparent|rgba\(0, 0, 0, 0\)/).test(tmp.css('backgroundColor')))); try { $('body').get(0).removeChild(tmp.get(0)); } catch (e) { }
        return $.ui.cssCache[name];
    }, disableSelection: function(el) { return $(el).attr('unselectable', 'on').css('MozUserSelect', 'none').bind('selectstart.ui', function() { return false; }); }, enableSelection: function(el) { return $(el).attr('unselectable', 'off').css('MozUserSelect', '').unbind('selectstart.ui'); }, hasScroll: function(e, a) {
        if ($(e).css('overflow') == 'hidden') { return false; }
        var scroll = (a && a == 'left') ? 'scrollLeft' : 'scrollTop', has = false; if (e[scroll] > 0) { return true; }
        e[scroll] = 1; has = (e[scroll] > 0); e[scroll] = 0; return has;
    } 
    }; $.ui.mouse = { _mouseInit: function() {
        var self = this; this.element.bind('mousedown.' + this.widgetName, function(e) { return self._mouseDown(e); }); if ($.browser.msie) { this._mouseUnselectable = this.element.attr('unselectable'); this.element.attr('unselectable', 'on'); }
        this.started = false;
    }, _mouseDestroy: function() { this.element.unbind('.' + this.widgetName); ($.browser.msie && this.element.attr('unselectable', this._mouseUnselectable)); }, _mouseDown: function(e) {
        (this._mouseStarted && this._mouseUp(e)); this._mouseDownEvent = e; var self = this, btnIsLeft = (e.which == 1), elIsCancel = (typeof this.options.cancel == "string" ? $(e.target).parents().add(e.target).filter(this.options.cancel).length : false); if (!btnIsLeft || elIsCancel || !this._mouseCapture(e)) { return true; }
        this.mouseDelayMet = !this.options.delay; if (!this.mouseDelayMet) { this._mouseDelayTimer = setTimeout(function() { self.mouseDelayMet = true; }, this.options.delay); }
        if (this._mouseDistanceMet(e) && this._mouseDelayMet(e)) { this._mouseStarted = (this._mouseStart(e) !== false); if (!this._mouseStarted) { e.preventDefault(); return true; } }
        this._mouseMoveDelegate = function(e) { return self._mouseMove(e); }; this._mouseUpDelegate = function(e) { return self._mouseUp(e); }; $(document).bind('mousemove.' + this.widgetName, this._mouseMoveDelegate).bind('mouseup.' + this.widgetName, this._mouseUpDelegate); return false;
    }, _mouseMove: function(e) {
        if ($.browser.msie && !e.button) { return this._mouseUp(e); }
        if (this._mouseStarted) { this._mouseDrag(e); return false; }
        if (this._mouseDistanceMet(e) && this._mouseDelayMet(e)) { this._mouseStarted = (this._mouseStart(this._mouseDownEvent, e) !== false); (this._mouseStarted ? this._mouseDrag(e) : this._mouseUp(e)); }
        return !this._mouseStarted;
    }, _mouseUp: function(e) {
        $(document).unbind('mousemove.' + this.widgetName, this._mouseMoveDelegate).unbind('mouseup.' + this.widgetName, this._mouseUpDelegate); if (this._mouseStarted) { this._mouseStarted = false; this._mouseStop(e); }
        return false;
    }, _mouseDistanceMet: function(e) { return (Math.max(Math.abs(this._mouseDownEvent.pageX - e.pageX), Math.abs(this._mouseDownEvent.pageY - e.pageY)) >= this.options.distance); }, _mouseDelayMet: function(e) { return this.mouseDelayMet; }, _mouseStart: function(e) { }, _mouseDrag: function(e) { }, _mouseStop: function(e) { }, _mouseCapture: function(e) { return true; } 
    }; $.ui.mouse.defaults = { cancel: null, distance: 1, delay: 0 };
})(jQuery); (function($) {
    $.widget("ui.draggable", $.extend({}, $.ui.mouse, { getHandle: function(e) { var handle = !this.options.handle || !$(this.options.handle, this.element).length ? true : false; $(this.options.handle, this.element).find("*").andSelf().each(function() { if (this == e.target) handle = true; }); return handle; }, createHelper: function() {
        var o = this.options; var helper = $.isFunction(o.helper) ? $(o.helper.apply(this.element[0], [e])) : (o.helper == 'clone' ? this.element.clone() : this.element); if (!helper.parents('body').length)
            helper.appendTo((o.appendTo == 'parent' ? this.element[0].parentNode : o.appendTo)); if (helper[0] != this.element[0] && !(/(fixed|absolute)/).test(helper.css("position")))
            helper.css("position", "absolute"); return helper;
    }, _init: function() {
        if (this.options.helper == 'original' && !(/^(?:r|a|f)/).test(this.element.css("position")))
            this.element[0].style.position = 'relative'; (this.options.cssNamespace && this.element.addClass(this.options.cssNamespace + "-draggable")); (this.options.disabled && this.element.addClass('ui-draggable-disabled')); this._mouseInit();
    }, _mouseCapture: function(e) {
        var o = this.options; if (this.helper || o.disabled || $(e.target).is('.ui-resizable-handle'))
            return false; this.handle = this.getHandle(e); if (!this.handle)
            return false; return true;
    }, _mouseStart: function(e) {
        var o = this.options; this.helper = this.createHelper(); if ($.ui.ddmanager)
            $.ui.ddmanager.current = this; this.margins = { left: (parseInt(this.element.css("marginLeft"), 10) || 0), top: (parseInt(this.element.css("marginTop"), 10) || 0) }; this.cssPosition = this.helper.css("position"); this.offset = this.element.offset(); this.offset = { top: this.offset.top - this.margins.top, left: this.offset.left - this.margins.left }; this.offset.click = { left: e.pageX - this.offset.left, top: e.pageY - this.offset.top }; this.cacheScrollParents(); this.offsetParent = this.helper.offsetParent(); var po = this.offsetParent.offset(); if (this.offsetParent[0] == document.body && $.browser.mozilla) po = { top: 0, left: 0 }; this.offset.parent = { top: po.top + (parseInt(this.offsetParent.css("borderTopWidth"), 10) || 0), left: po.left + (parseInt(this.offsetParent.css("borderLeftWidth"), 10) || 0) }; if (this.cssPosition == "relative") { var p = this.element.position(); this.offset.relative = { top: p.top - (parseInt(this.helper.css("top"), 10) || 0) + this.scrollTopParent.scrollTop(), left: p.left - (parseInt(this.helper.css("left"), 10) || 0) + this.scrollLeftParent.scrollLeft() }; } else { this.offset.relative = { top: 0, left: 0 }; }
        this.originalPosition = this._generatePosition(e); this.cacheHelperProportions(); if (o.cursorAt)
            this.adjustOffsetFromHelper(o.cursorAt); $.extend(this, { PAGEY_INCLUDES_SCROLL: (this.cssPosition == "absolute" && (!this.scrollTopParent[0].tagName || (/(html|body)/i).test(this.scrollTopParent[0].tagName))), PAGEX_INCLUDES_SCROLL: (this.cssPosition == "absolute" && (!this.scrollLeftParent[0].tagName || (/(html|body)/i).test(this.scrollLeftParent[0].tagName))), OFFSET_PARENT_NOT_SCROLL_PARENT_Y: this.scrollTopParent[0] != this.offsetParent[0] && !(this.scrollTopParent[0] == document && (/(body|html)/i).test(this.offsetParent[0].tagName)), OFFSET_PARENT_NOT_SCROLL_PARENT_X: this.scrollLeftParent[0] != this.offsetParent[0] && !(this.scrollLeftParent[0] == document && (/(body|html)/i).test(this.offsetParent[0].tagName)) }); if (o.containment)
            this.setContainment(); this._propagate("start", e); this.cacheHelperProportions(); if ($.ui.ddmanager && !o.dropBehaviour)
            $.ui.ddmanager.prepareOffsets(this, e); this.helper.addClass("ui-draggable-dragging"); this._mouseDrag(e); return true;
    }, cacheScrollParents: function() { this.scrollTopParent = function(el) { do { if (/auto|scroll/.test(el.css('overflow')) || (/auto|scroll/).test(el.css('overflow-y'))) return el; el = el.parent(); } while (el[0].parentNode); return $(document); } (this.helper); this.scrollLeftParent = function(el) { do { if (/auto|scroll/.test(el.css('overflow')) || (/auto|scroll/).test(el.css('overflow-x'))) return el; el = el.parent(); } while (el[0].parentNode); return $(document); } (this.helper); }, adjustOffsetFromHelper: function(obj) { if (obj.left != undefined) this.offset.click.left = obj.left + this.margins.left; if (obj.right != undefined) this.offset.click.left = this.helperProportions.width - obj.right + this.margins.left; if (obj.top != undefined) this.offset.click.top = obj.top + this.margins.top; if (obj.bottom != undefined) this.offset.click.top = this.helperProportions.height - obj.bottom + this.margins.top; }, cacheHelperProportions: function() { this.helperProportions = { width: this.helper.outerWidth(), height: this.helper.outerHeight() }; }, setContainment: function() { var o = this.options; if (o.containment == 'parent') o.containment = this.helper[0].parentNode; if (o.containment == 'document' || o.containment == 'window') this.containment = [0 - this.offset.relative.left - this.offset.parent.left, 0 - this.offset.relative.top - this.offset.parent.top, $(o.containment == 'document' ? document : window).width() - this.offset.relative.left - this.offset.parent.left - this.helperProportions.width - this.margins.left - (parseInt(this.element.css("marginRight"), 10) || 0), ($(o.containment == 'document' ? document : window).height() || document.body.parentNode.scrollHeight) - this.offset.relative.top - this.offset.parent.top - this.helperProportions.height - this.margins.top - (parseInt(this.element.css("marginBottom"), 10) || 0)]; if (!(/^(document|window|parent)$/).test(o.containment)) { var ce = $(o.containment)[0]; var co = $(o.containment).offset(); var over = ($(ce).css("overflow") != 'hidden'); this.containment = [co.left + (parseInt($(ce).css("borderLeftWidth"), 10) || 0) - this.offset.relative.left - this.offset.parent.left, co.top + (parseInt($(ce).css("borderTopWidth"), 10) || 0) - this.offset.relative.top - this.offset.parent.top, co.left + (over ? Math.max(ce.scrollWidth, ce.offsetWidth) : ce.offsetWidth) - (parseInt($(ce).css("borderLeftWidth"), 10) || 0) - this.offset.relative.left - this.offset.parent.left - this.helperProportions.width - this.margins.left - (parseInt(this.element.css("marginRight"), 10) || 0), co.top + (over ? Math.max(ce.scrollHeight, ce.offsetHeight) : ce.offsetHeight) - (parseInt($(ce).css("borderTopWidth"), 10) || 0) - this.offset.relative.top - this.offset.parent.top - this.helperProportions.height - this.margins.top - (parseInt(this.element.css("marginBottom"), 10) || 0)]; } }, _convertPositionTo: function(d, pos) {
        if (!pos) pos = this.position; var mod = d == "absolute" ? 1 : -1; return { top: (pos.top
+ this.offset.relative.top * mod
+ this.offset.parent.top * mod
- (this.cssPosition == "fixed" || this.PAGEY_INCLUDES_SCROLL || this.OFFSET_PARENT_NOT_SCROLL_PARENT_Y ? 0 : this.scrollTopParent.scrollTop()) * mod
+ (this.cssPosition == "fixed" ? $(document).scrollTop() : 0) * mod
+ this.margins.top * mod), left: (pos.left
+ this.offset.relative.left * mod
+ this.offset.parent.left * mod
- (this.cssPosition == "fixed" || this.PAGEX_INCLUDES_SCROLL || this.OFFSET_PARENT_NOT_SCROLL_PARENT_X ? 0 : this.scrollLeftParent.scrollLeft()) * mod
+ (this.cssPosition == "fixed" ? $(document).scrollLeft() : 0) * mod
+ this.margins.left * mod)
        };
    }, _generatePosition: function(e) {
        var o = this.options; var position = { top: (e.pageY
- this.offset.click.top
- this.offset.relative.top
- this.offset.parent.top
+ (this.cssPosition == "fixed" || this.PAGEY_INCLUDES_SCROLL || this.OFFSET_PARENT_NOT_SCROLL_PARENT_Y ? 0 : this.scrollTopParent.scrollTop())
- (this.cssPosition == "fixed" ? $(document).scrollTop() : 0)), left: (e.pageX
- this.offset.click.left
- this.offset.relative.left
- this.offset.parent.left
+ (this.cssPosition == "fixed" || this.PAGEX_INCLUDES_SCROLL || this.OFFSET_PARENT_NOT_SCROLL_PARENT_X ? 0 : this.scrollLeftParent.scrollLeft())
- (this.cssPosition == "fixed" ? $(document).scrollLeft() : 0))
        }; if (!this.originalPosition) return position; if (this.containment) { if (position.left < this.containment[0]) position.left = this.containment[0]; if (position.top < this.containment[1]) position.top = this.containment[1]; if (position.left > this.containment[2]) position.left = this.containment[2]; if (position.top > this.containment[3]) position.top = this.containment[3]; }
        if (o.grid) { var top = this.originalPosition.top + Math.round((position.top - this.originalPosition.top) / o.grid[1]) * o.grid[1]; position.top = this.containment ? (!(top < this.containment[1] || top > this.containment[3]) ? top : (!(top < this.containment[1]) ? top - o.grid[1] : top + o.grid[1])) : top; var left = this.originalPosition.left + Math.round((position.left - this.originalPosition.left) / o.grid[0]) * o.grid[0]; position.left = this.containment ? (!(left < this.containment[0] || left > this.containment[2]) ? left : (!(left < this.containment[0]) ? left - o.grid[0] : left + o.grid[0])) : left; }
        return position;
    }, _mouseDrag: function(e) { this.position = this._generatePosition(e); this.positionAbs = this._convertPositionTo("absolute"); this.position = this._propagate("drag", e) || this.position; if (!this.options.axis || this.options.axis != "y") this.helper[0].style.left = this.position.left + 'px'; if (!this.options.axis || this.options.axis != "x") this.helper[0].style.top = this.position.top + 'px'; if ($.ui.ddmanager) $.ui.ddmanager.drag(this, e); return false; }, _mouseStop: function(e) {
        var dropped = false; if ($.ui.ddmanager && !this.options.dropBehaviour)
            var dropped = $.ui.ddmanager.drop(this, e); if ((this.options.revert == "invalid" && !dropped) || (this.options.revert == "valid" && dropped) || this.options.revert === true || ($.isFunction(this.options.revert) && this.options.revert.call(this.element, dropped))) { var self = this; $(this.helper).animate(this.originalPosition, parseInt(this.options.revertDuration, 10) || 500, function() { self._propagate("stop", e); self._clear(); }); } else { this._propagate("stop", e); this._clear(); }
        return false;
    }, _clear: function() { this.helper.removeClass("ui-draggable-dragging"); if (this.options.helper != 'original' && !this.cancelHelperRemoval) this.helper.remove(); this.helper = null; this.cancelHelperRemoval = false; }, plugins: {}, uiHash: function(e) { return { helper: this.helper, position: this.position, absolutePosition: this.positionAbs, options: this.options }; }, _propagate: function(n, e) { $.ui.plugin.call(this, n, [e, this.uiHash()]); if (n == "drag") this.positionAbs = this._convertPositionTo("absolute"); return this.element.triggerHandler(n == "drag" ? n : "drag" + n, [e, this.uiHash()], this.options[n]); }, destroy: function() { if (!this.element.data('draggable')) return; this.element.removeData("draggable").unbind(".draggable").removeClass('ui-draggable ui-draggable-dragging ui-draggable-disabled'); this._mouseDestroy(); } 
    })); $.extend($.ui.draggable, { defaults: { appendTo: "parent", axis: false, cancel: ":input", delay: 0, distance: 1, helper: "original", scope: "default", cssNamespace: "ui"} }); $.ui.plugin.add("draggable", "cursor", { start: function(e, ui) { var t = $('body'); if (t.css("cursor")) ui.options._cursor = t.css("cursor"); t.css("cursor", ui.options.cursor); }, stop: function(e, ui) { if (ui.options._cursor) $('body').css("cursor", ui.options._cursor); } }); $.ui.plugin.add("draggable", "zIndex", { start: function(e, ui) { var t = $(ui.helper); if (t.css("zIndex")) ui.options._zIndex = t.css("zIndex"); t.css('zIndex', ui.options.zIndex); }, stop: function(e, ui) { if (ui.options._zIndex) $(ui.helper).css('zIndex', ui.options._zIndex); } }); $.ui.plugin.add("draggable", "opacity", { start: function(e, ui) { var t = $(ui.helper); if (t.css("opacity")) ui.options._opacity = t.css("opacity"); t.css('opacity', ui.options.opacity); }, stop: function(e, ui) { if (ui.options._opacity) $(ui.helper).css('opacity', ui.options._opacity); } }); $.ui.plugin.add("draggable", "iframeFix", { start: function(e, ui) { $(ui.options.iframeFix === true ? "iframe" : ui.options.iframeFix).each(function() { $('<div class="ui-draggable-iframeFix" style="background: #fff;"></div>').css({ width: this.offsetWidth + "px", height: this.offsetHeight + "px", position: "absolute", opacity: "0.001", zIndex: 1000 }).css($(this).offset()).appendTo("body"); }); }, stop: function(e, ui) { $("div.ui-draggable-iframeFix").each(function() { this.parentNode.removeChild(this); }); } }); $.ui.plugin.add("draggable", "scroll", { start: function(e, ui) { var o = ui.options; var i = $(this).data("draggable"); o.scrollSensitivity = o.scrollSensitivity || 20; o.scrollSpeed = o.scrollSpeed || 20; i.overflowY = function(el) { do { if (/auto|scroll/.test(el.css('overflow')) || (/auto|scroll/).test(el.css('overflow-y'))) return el; el = el.parent(); } while (el[0].parentNode); return $(document); } (this); i.overflowX = function(el) { do { if (/auto|scroll/.test(el.css('overflow')) || (/auto|scroll/).test(el.css('overflow-x'))) return el; el = el.parent(); } while (el[0].parentNode); return $(document); } (this); if (i.overflowY[0] != document && i.overflowY[0].tagName != 'HTML') i.overflowYOffset = i.overflowY.offset(); if (i.overflowX[0] != document && i.overflowX[0].tagName != 'HTML') i.overflowXOffset = i.overflowX.offset(); }, drag: function(e, ui) {
        var o = ui.options, scrolled = false; var i = $(this).data("draggable"); if (i.overflowY[0] != document && i.overflowY[0].tagName != 'HTML') {
            if ((i.overflowYOffset.top + i.overflowY[0].offsetHeight) - e.pageY < o.scrollSensitivity)
                i.overflowY[0].scrollTop = scrolled = i.overflowY[0].scrollTop + o.scrollSpeed; if (e.pageY - i.overflowYOffset.top < o.scrollSensitivity)
                i.overflowY[0].scrollTop = scrolled = i.overflowY[0].scrollTop - o.scrollSpeed;
        } else {
            if (e.pageY - $(document).scrollTop() < o.scrollSensitivity)
                scrolled = $(document).scrollTop($(document).scrollTop() - o.scrollSpeed); if ($(window).height() - (e.pageY - $(document).scrollTop()) < o.scrollSensitivity)
                scrolled = $(document).scrollTop($(document).scrollTop() + o.scrollSpeed);
        }
        if (i.overflowX[0] != document && i.overflowX[0].tagName != 'HTML') {
            if ((i.overflowXOffset.left + i.overflowX[0].offsetWidth) - e.pageX < o.scrollSensitivity)
                i.overflowX[0].scrollLeft = scrolled = i.overflowX[0].scrollLeft + o.scrollSpeed; if (e.pageX - i.overflowXOffset.left < o.scrollSensitivity)
                i.overflowX[0].scrollLeft = scrolled = i.overflowX[0].scrollLeft - o.scrollSpeed;
        } else {
            if (e.pageX - $(document).scrollLeft() < o.scrollSensitivity)
                scrolled = $(document).scrollLeft($(document).scrollLeft() - o.scrollSpeed); if ($(window).width() - (e.pageX - $(document).scrollLeft()) < o.scrollSensitivity)
                scrolled = $(document).scrollLeft($(document).scrollLeft() + o.scrollSpeed);
        }
        if (scrolled !== false)
            $.ui.ddmanager.prepareOffsets(i, e);
    } 
    }); $.ui.plugin.add("draggable", "snap", { start: function(e, ui) { var inst = $(this).data("draggable"); inst.snapElements = []; $(ui.options.snap.constructor != String ? (ui.options.snap.items || ':data(draggable)') : ui.options.snap).each(function() { var $t = $(this); var $o = $t.offset(); if (this != inst.element[0]) inst.snapElements.push({ item: this, width: $t.outerWidth(), height: $t.outerHeight(), top: $o.top, left: $o.left }); }); }, drag: function(e, ui) {
        var inst = $(this).data("draggable"); var d = ui.options.snapTolerance || 20; var x1 = ui.absolutePosition.left, x2 = x1 + inst.helperProportions.width, y1 = ui.absolutePosition.top, y2 = y1 + inst.helperProportions.height; for (var i = inst.snapElements.length - 1; i >= 0; i--) {
            var l = inst.snapElements[i].left, r = l + inst.snapElements[i].width, t = inst.snapElements[i].top, b = t + inst.snapElements[i].height; if (!((l - d < x1 && x1 < r + d && t - d < y1 && y1 < b + d) || (l - d < x1 && x1 < r + d && t - d < y2 && y2 < b + d) || (l - d < x2 && x2 < r + d && t - d < y1 && y1 < b + d) || (l - d < x2 && x2 < r + d && t - d < y2 && y2 < b + d))) { if (inst.snapElements[i].snapping) (inst.options.snap.release && inst.options.snap.release.call(inst.element, null, $.extend(inst.uiHash(), { snapItem: inst.snapElements[i].item }))); inst.snapElements[i].snapping = false; continue; }
            if (ui.options.snapMode != 'inner') { var ts = Math.abs(t - y2) <= d; var bs = Math.abs(b - y1) <= d; var ls = Math.abs(l - x2) <= d; var rs = Math.abs(r - x1) <= d; if (ts) ui.position.top = inst._convertPositionTo("relative", { top: t - inst.helperProportions.height, left: 0 }).top; if (bs) ui.position.top = inst._convertPositionTo("relative", { top: b, left: 0 }).top; if (ls) ui.position.left = inst._convertPositionTo("relative", { top: 0, left: l - inst.helperProportions.width }).left; if (rs) ui.position.left = inst._convertPositionTo("relative", { top: 0, left: r }).left; }
            var first = (ts || bs || ls || rs); if (ui.options.snapMode != 'outer') { var ts = Math.abs(t - y1) <= d; var bs = Math.abs(b - y2) <= d; var ls = Math.abs(l - x1) <= d; var rs = Math.abs(r - x2) <= d; if (ts) ui.position.top = inst._convertPositionTo("relative", { top: t, left: 0 }).top; if (bs) ui.position.top = inst._convertPositionTo("relative", { top: b - inst.helperProportions.height, left: 0 }).top; if (ls) ui.position.left = inst._convertPositionTo("relative", { top: 0, left: l }).left; if (rs) ui.position.left = inst._convertPositionTo("relative", { top: 0, left: r - inst.helperProportions.width }).left; }
            if (!inst.snapElements[i].snapping && (ts || bs || ls || rs || first))
                (inst.options.snap.snap && inst.options.snap.snap.call(inst.element, null, $.extend(inst.uiHash(), { snapItem: inst.snapElements[i].item }))); inst.snapElements[i].snapping = (ts || bs || ls || rs || first);
        };
    } 
    }); $.ui.plugin.add("draggable", "connectToSortable", { start: function(e, ui) { var inst = $(this).data("draggable"); inst.sortables = []; $(ui.options.connectToSortable).each(function() { if ($.data(this, 'sortable')) { var sortable = $.data(this, 'sortable'); inst.sortables.push({ instance: sortable, shouldRevert: sortable.options.revert }); sortable._refreshItems(); sortable._propagate("activate", e, inst); } }); }, stop: function(e, ui) { var inst = $(this).data("draggable"); $.each(inst.sortables, function() { if (this.instance.isOver) { this.instance.isOver = 0; inst.cancelHelperRemoval = true; this.instance.cancelHelperRemoval = false; if (this.shouldRevert) this.instance.options.revert = true; this.instance._mouseStop(e); this.instance.element.triggerHandler("sortreceive", [e, $.extend(this.instance.ui(), { sender: inst.element })], this.instance.options["receive"]); this.instance.options.helper = this.instance.options._helper; } else { this.instance._propagate("deactivate", e, inst); } }); }, drag: function(e, ui) {
        var inst = $(this).data("draggable"), self = this; var checkPos = function(o) { var l = o.left, r = l + o.width, t = o.top, b = t + o.height; return (l < (this.positionAbs.left + this.offset.click.left) && (this.positionAbs.left + this.offset.click.left) < r && t < (this.positionAbs.top + this.offset.click.top) && (this.positionAbs.top + this.offset.click.top) < b); }; $.each(inst.sortables, function(i) {
            if (checkPos.call(inst, this.instance.containerCache)) {
                if (!this.instance.isOver) { this.instance.isOver = 1; this.instance.currentItem = $(self).clone().appendTo(this.instance.element).data("sortable-item", true); this.instance.options._helper = this.instance.options.helper; this.instance.options.helper = function() { return ui.helper[0]; }; e.target = this.instance.currentItem[0]; this.instance._mouseCapture(e, true); this.instance._mouseStart(e, true, true); this.instance.offset.click.top = inst.offset.click.top; this.instance.offset.click.left = inst.offset.click.left; this.instance.offset.parent.left -= inst.offset.parent.left - this.instance.offset.parent.left; this.instance.offset.parent.top -= inst.offset.parent.top - this.instance.offset.parent.top; inst._propagate("toSortable", e); }
                if (this.instance.currentItem) this.instance._mouseDrag(e);
            } else { if (this.instance.isOver) { this.instance.isOver = 0; this.instance.cancelHelperRemoval = true; this.instance.options.revert = false; this.instance._mouseStop(e, true); this.instance.options.helper = this.instance.options._helper; this.instance.currentItem.remove(); if (this.instance.placeholder) this.instance.placeholder.remove(); inst._propagate("fromSortable", e); } };
        });
    } 
    }); $.ui.plugin.add("draggable", "stack", { start: function(e, ui) { var group = $.makeArray($(ui.options.stack.group)).sort(function(a, b) { return (parseInt($(a).css("zIndex"), 10) || ui.options.stack.min) - (parseInt($(b).css("zIndex"), 10) || ui.options.stack.min); }); $(group).each(function(i) { this.style.zIndex = ui.options.stack.min + i; }); this[0].style.zIndex = ui.options.stack.min + group.length; } });
})(jQuery); (function($) {
    function contains(a, b) {
        var safari2 = $.browser.safari && $.browser.version < 522; if (a.contains && !safari2) { return a.contains(b); }
        if (a.compareDocumentPosition)
            return !!(a.compareDocumentPosition(b) & 16); while (b = b.parentNode)
            if (b == a) return true; return false;
    }; $.widget("ui.sortable", $.extend({}, $.ui.mouse, { _init: function() { var o = this.options; this.containerCache = {}; this.element.addClass("ui-sortable"); this.refresh(); this.floating = this.items.length ? (/left|right/).test(this.items[0].item.css('float')) : false; this.offset = this.element.offset(); this._mouseInit(); }, plugins: {}, ui: function(inst) { return { helper: (inst || this)["helper"], placeholder: (inst || this)["placeholder"] || $([]), position: (inst || this)["position"], absolutePosition: (inst || this)["positionAbs"], options: this.options, element: this.element, item: (inst || this)["currentItem"], sender: inst ? inst.element : null }; }, _propagate: function(n, e, inst, noPropagation) { $.ui.plugin.call(this, n, [e, this.ui(inst)]); if (!noPropagation) this.element.triggerHandler(n == "sort" ? n : "sort" + n, [e, this.ui(inst)], this.options[n]); }, serialize: function(o) { var items = this._getItemsAsjQuery(o && o.connected); var str = []; o = o || {}; $(items).each(function() { var res = ($(this.item || this).attr(o.attribute || 'id') || '').match(o.expression || (/(.+)[-=_](.+)/)); if (res) str.push((o.key || res[1] + '[]') + '=' + (o.key && o.expression ? res[1] : res[2])); }); return str.join('&'); }, toArray: function(o) { var items = this._getItemsAsjQuery(o && o.connected); var ret = []; items.each(function() { ret.push($(this).attr(o.attr || 'id')); }); return ret; }, _intersectsWith: function(item) { var x1 = this.positionAbs.left, x2 = x1 + this.helperProportions.width, y1 = this.positionAbs.top, y2 = y1 + this.helperProportions.height; var l = item.left, r = l + item.width, t = item.top, b = t + item.height; var dyClick = this.offset.click.top, dxClick = this.offset.click.left; var isOverElement = (y1 + dyClick) > t && (y1 + dyClick) < b && (x1 + dxClick) > l && (x1 + dxClick) < r; if (this.options.tolerance == "pointer" || this.options.forcePointerForContainers || (this.options.tolerance == "guess" && this.helperProportions[this.floating ? 'width' : 'height'] > item[this.floating ? 'width' : 'height'])) { return isOverElement; } else { return (l < x1 + (this.helperProportions.width / 2) && x2 - (this.helperProportions.width / 2) < r && t < y1 + (this.helperProportions.height / 2) && y2 - (this.helperProportions.height / 2) < b); } }, _intersectsWithEdge: function(item) {
        var x1 = this.positionAbs.left, x2 = x1 + this.helperProportions.width, y1 = this.positionAbs.top, y2 = y1 + this.helperProportions.height; var l = item.left, r = l + item.width, t = item.top, b = t + item.height; var dyClick = this.offset.click.top, dxClick = this.offset.click.left; var isOverElement = (y1 + dyClick) > t && (y1 + dyClick) < b && (x1 + dxClick) > l && (x1 + dxClick) < r; if (this.options.tolerance == "pointer" || (this.options.tolerance == "guess" && this.helperProportions[this.floating ? 'width' : 'height'] > item[this.floating ? 'width' : 'height'])) {
            if (!isOverElement) return false; if (this.floating) { if ((x1 + dxClick) > l && (x1 + dxClick) < l + item.width / 2) return 2; if ((x1 + dxClick) > l + item.width / 2 && (x1 + dxClick) < r) return 1; } else {
                var height = item.height; var direction = y1 - this.updateOriginalPosition.top < 0 ? 2 : 1; if (direction == 1 && (y1 + dyClick) < t + height / 2) { return 2; }
                else if (direction == 2 && (y1 + dyClick) > t + height / 2) { return 1; } 
            } 
        } else { if (!(l < x1 + (this.helperProportions.width / 2) && x2 - (this.helperProportions.width / 2) < r && t < y1 + (this.helperProportions.height / 2) && y2 - (this.helperProportions.height / 2) < b)) return false; if (this.floating) { if (x2 > l && x1 < l) return 2; if (x1 < r && x2 > r) return 1; } else { if (y2 > t && y1 < t) return 1; if (y1 < b && y2 > b) return 2; } }
        return false;
    }, refresh: function() { this._refreshItems(); this.refreshPositions(); }, _getItemsAsjQuery: function(connected) {
        var self = this; var items = []; var queries = []; if (this.options.connectWith && connected) { for (var i = this.options.connectWith.length - 1; i >= 0; i--) { var cur = $(this.options.connectWith[i]); for (var j = cur.length - 1; j >= 0; j--) { var inst = $.data(cur[j], 'sortable'); if (inst && inst != this && !inst.options.disabled) { queries.push([$.isFunction(inst.options.items) ? inst.options.items.call(inst.element) : $(inst.options.items, inst.element).not(".ui-sortable-helper"), inst]); } }; }; }
        queries.push([$.isFunction(this.options.items) ? this.options.items.call(this.element, null, { options: this.options, item: this.currentItem }) : $(this.options.items, this.element).not(".ui-sortable-helper"), this]); for (var i = queries.length - 1; i >= 0; i--) { queries[i][0].each(function() { items.push(this); }); }; return $(items);
    }, _removeCurrentsFromItems: function() {
        var list = this.currentItem.find(":data(sortable-item)"); for (var i = 0; i < this.items.length; i++) {
            for (var j = 0; j < list.length; j++) {
                if (list[j] == this.items[i].item[0])
                    this.items.splice(i, 1);
            };
        };
    }, _refreshItems: function() {
        this.items = []; this.containers = [this]; var items = this.items; var self = this; var queries = [[$.isFunction(this.options.items) ? this.options.items.call(this.element, null, { options: this.options, item: this.currentItem }) : $(this.options.items, this.element), this]]; if (this.options.connectWith) { for (var i = this.options.connectWith.length - 1; i >= 0; i--) { var cur = $(this.options.connectWith[i]); for (var j = cur.length - 1; j >= 0; j--) { var inst = $.data(cur[j], 'sortable'); if (inst && inst != this && !inst.options.disabled) { queries.push([$.isFunction(inst.options.items) ? inst.options.items.call(inst.element) : $(inst.options.items, inst.element), inst]); this.containers.push(inst); } }; }; }
        for (var i = queries.length - 1; i >= 0; i--) { queries[i][0].each(function() { $.data(this, 'sortable-item', queries[i][1]); items.push({ item: $(this), instance: queries[i][1], width: 0, height: 0, left: 0, top: 0 }); }); };
    }, refreshPositions: function(fast) {
        if (this.offsetParent) { var po = this.offsetParent.offset(); this.offset.parent = { top: po.top + this.offsetParentBorders.top, left: po.left + this.offsetParentBorders.left }; }
        for (var i = this.items.length - 1; i >= 0; i--) {
            if (this.items[i].instance != this.currentContainer && this.currentContainer && this.items[i].item[0] != this.currentItem[0])
                continue; var t = this.options.toleranceElement ? $(this.options.toleranceElement, this.items[i].item) : this.items[i].item; if (!fast) { this.items[i].width = t[0].offsetWidth; this.items[i].height = t[0].offsetHeight; }
            var p = t.offset(); this.items[i].left = p.left; this.items[i].top = p.top;
        }; if (this.options.custom && this.options.custom.refreshContainers) { this.options.custom.refreshContainers.call(this); } else { for (var i = this.containers.length - 1; i >= 0; i--) { var p = this.containers[i].element.offset(); this.containers[i].containerCache.left = p.left; this.containers[i].containerCache.top = p.top; this.containers[i].containerCache.width = this.containers[i].element.outerWidth(); this.containers[i].containerCache.height = this.containers[i].element.outerHeight(); }; } 
    }, destroy: function() {
        this.element.removeClass("ui-sortable ui-sortable-disabled").removeData("sortable").unbind(".sortable"); this._mouseDestroy(); for (var i = this.items.length - 1; i >= 0; i--)
            this.items[i].item.removeData("sortable-item");
    }, _createPlaceholder: function(that) {
        var self = that || this, o = self.options; if (!o.placeholder || o.placeholder.constructor == String) { var className = o.placeholder; o.placeholder = { element: function() { var el = $(document.createElement(self.currentItem[0].nodeName)).addClass(className || "ui-sortable-placeholder")[0]; if (!className) { el.style.visibility = "hidden"; document.body.appendChild(el); el.innerHTML = self.currentItem[0].innerHTML; document.body.removeChild(el); }; return el; }, update: function(container, p) { if (className && !o.forcePlaceholderSize) return; if (!p.height()) { p.height(self.currentItem.innerHeight() - parseInt(self.currentItem.css('paddingTop') || 0, 10) - parseInt(self.currentItem.css('paddingBottom') || 0, 10)); }; if (!p.width()) { p.width(self.currentItem.innerWidth() - parseInt(self.currentItem.css('paddingLeft') || 0, 10) - parseInt(self.currentItem.css('paddingRight') || 0, 10)); }; } }; }
        self.placeholder = $(o.placeholder.element.call(self.element, self.currentItem))
        self.currentItem.parent()[0].appendChild(self.placeholder[0]); self.placeholder[0].parentNode.insertBefore(self.placeholder[0], self.currentItem[0]); o.placeholder.update(self, self.placeholder);
    }, _contactContainers: function(e) {
        for (var i = this.containers.length - 1; i >= 0; i--) {
            if (this._intersectsWith(this.containers[i].containerCache)) {
                if (!this.containers[i].containerCache.over) {
                    if (this.currentContainer != this.containers[i]) {
                        var dist = 10000; var itemWithLeastDistance = null; var base = this.positionAbs[this.containers[i].floating ? 'left' : 'top']; for (var j = this.items.length - 1; j >= 0; j--) { if (!contains(this.containers[i].element[0], this.items[j].item[0])) continue; var cur = this.items[j][this.containers[i].floating ? 'left' : 'top']; if (Math.abs(cur - base) < dist) { dist = Math.abs(cur - base); itemWithLeastDistance = this.items[j]; } }
                        if (!itemWithLeastDistance && !this.options.dropOnEmpty)
                            continue; this.currentContainer = this.containers[i]; itemWithLeastDistance ? this.options.sortIndicator.call(this, e, itemWithLeastDistance, null, true) : this.options.sortIndicator.call(this, e, null, this.containers[i].element, true); this._propagate("change", e); this.containers[i]._propagate("change", e, this); this.options.placeholder.update(this.currentContainer, this.placeholder);
                    }
                    this.containers[i]._propagate("over", e, this); this.containers[i].containerCache.over = 1;
                } 
            } else { if (this.containers[i].containerCache.over) { this.containers[i]._propagate("out", e, this); this.containers[i].containerCache.over = 0; } } 
        };
    }, _mouseCapture: function(e, overrideHandle) {
        if (this.options.disabled || this.options.type == 'static') return false; this._refreshItems(); var currentItem = null, self = this, nodes = $(e.target).parents().each(function() { if ($.data(this, 'sortable-item') == self) { currentItem = $(this); return false; } }); if ($.data(e.target, 'sortable-item') == self) currentItem = $(e.target); if (!currentItem) return false; if (this.options.handle && !overrideHandle) { var validHandle = false; $(this.options.handle, currentItem).find("*").andSelf().each(function() { if (this == e.target) validHandle = true; }); if (!validHandle) return false; }
        this.currentItem = currentItem; this._removeCurrentsFromItems(); return true;
    }, createHelper: function(e) {
        var o = this.options; var helper = typeof o.helper == 'function' ? $(o.helper.apply(this.element[0], [e, this.currentItem])) : (o.helper == "original" ? this.currentItem : this.currentItem.clone()); if (!helper.parents('body').length)
            $(o.appendTo != 'parent' ? o.appendTo : this.currentItem[0].parentNode)[0].appendChild(helper[0]); return helper;
    }, _mouseStart: function(e, overrideHandle, noActivation) {
        var o = this.options; this.currentContainer = this; this.refreshPositions(); this.helper = this.createHelper(e); this.margins = { left: (parseInt(this.currentItem.css("marginLeft"), 10) || 0), top: (parseInt(this.currentItem.css("marginTop"), 10) || 0) }; this.offset = this.currentItem.offset(); this.offset = { top: this.offset.top - this.margins.top, left: this.offset.left - this.margins.left }; this.offset.click = { left: e.pageX - this.offset.left, top: e.pageY - this.offset.top }; this.offsetParent = this.helper.offsetParent(); var po = this.offsetParent.offset(); this.offsetParentBorders = { top: (parseInt(this.offsetParent.css("borderTopWidth"), 10) || 0), left: (parseInt(this.offsetParent.css("borderLeftWidth"), 10) || 0) }; this.offset.parent = { top: po.top + this.offsetParentBorders.top, left: po.left + this.offsetParentBorders.left }; this.updateOriginalPosition = this.originalPosition = this._generatePosition(e); this.domPosition = { prev: this.currentItem.prev()[0], parent: this.currentItem.parent()[0] }; this.helperProportions = { width: this.helper.outerWidth(), height: this.helper.outerHeight() }; if (o.helper == "original") { this._storedCSS = { position: this.currentItem.css("position"), top: this.currentItem.css("top"), left: this.currentItem.css("left"), clear: this.currentItem.css("clear") }; } else { this.currentItem.hide(); }
        this.helper.css({ position: 'absolute', clear: 'both' }).addClass('ui-sortable-helper'); this._createPlaceholder(); this._propagate("start", e); if (!this._preserveHelperProportions)
            this.helperProportions = { width: this.helper.outerWidth(), height: this.helper.outerHeight() }; if (o.cursorAt) { if (o.cursorAt.left != undefined) this.offset.click.left = o.cursorAt.left; if (o.cursorAt.right != undefined) this.offset.click.left = this.helperProportions.width - o.cursorAt.right; if (o.cursorAt.top != undefined) this.offset.click.top = o.cursorAt.top; if (o.cursorAt.bottom != undefined) this.offset.click.top = this.helperProportions.height - o.cursorAt.bottom; }
        if (o.containment) { if (o.containment == 'parent') o.containment = this.helper[0].parentNode; if (o.containment == 'document' || o.containment == 'window') this.containment = [0 - this.offset.parent.left, 0 - this.offset.parent.top, $(o.containment == 'document' ? document : window).width() - this.offset.parent.left - this.helperProportions.width - this.margins.left - (parseInt(this.element.css("marginRight"), 10) || 0), ($(o.containment == 'document' ? document : window).height() || document.body.parentNode.scrollHeight) - this.offset.parent.top - this.helperProportions.height - this.margins.top - (parseInt(this.element.css("marginBottom"), 10) || 0)]; if (!(/^(document|window|parent)$/).test(o.containment)) { var ce = $(o.containment)[0]; var co = $(o.containment).offset(); var over = ($(ce).css("overflow") != 'hidden'); this.containment = [co.left + (parseInt($(ce).css("borderLeftWidth"), 10) || 0) - this.offset.parent.left, co.top + (parseInt($(ce).css("borderTopWidth"), 10) || 0) - this.offset.parent.top, co.left + (over ? Math.max(ce.scrollWidth, ce.offsetWidth) : ce.offsetWidth) - (parseInt($(ce).css("borderLeftWidth"), 10) || 0) - this.offset.parent.left - this.helperProportions.width - this.margins.left - (parseInt(this.currentItem.css("marginRight"), 10) || 0), co.top + (over ? Math.max(ce.scrollHeight, ce.offsetHeight) : ce.offsetHeight) - (parseInt($(ce).css("borderTopWidth"), 10) || 0) - this.offset.parent.top - this.helperProportions.height - this.margins.top - (parseInt(this.currentItem.css("marginBottom"), 10) || 0)]; } }
        if (!noActivation) { for (var i = this.containers.length - 1; i >= 0; i--) { this.containers[i]._propagate("activate", e, this); } }
        if ($.ui.ddmanager)
            $.ui.ddmanager.current = this; if ($.ui.ddmanager && !o.dropBehaviour)
            $.ui.ddmanager.prepareOffsets(this, e); this.dragging = true; this._mouseDrag(e); return true;
    }, _convertPositionTo: function(d, pos) {
        if (!pos) pos = this.position; var mod = d == "absolute" ? 1 : -1; return { top: (pos.top
+ this.offset.parent.top * mod
- (this.offsetParent[0] == document.body ? 0 : this.offsetParent[0].scrollTop) * mod
+ this.margins.top * mod), left: (pos.left
+ this.offset.parent.left * mod
- (this.offsetParent[0] == document.body ? 0 : this.offsetParent[0].scrollLeft) * mod
+ this.margins.left * mod)
        };
    }, _generatePosition: function(e) {
        var o = this.options; var position = { top: (e.pageY
- this.offset.click.top
- this.offset.parent.top
+ (this.offsetParent[0] == document.body ? 0 : this.offsetParent[0].scrollTop)), left: (e.pageX
- this.offset.click.left
- this.offset.parent.left
+ (this.offsetParent[0] == document.body ? 0 : this.offsetParent[0].scrollLeft))
        }; if (!this.originalPosition) return position; if (this.containment) { if (position.left < this.containment[0]) position.left = this.containment[0]; if (position.top < this.containment[1]) position.top = this.containment[1]; if (position.left > this.containment[2]) position.left = this.containment[2]; if (position.top > this.containment[3]) position.top = this.containment[3]; }
        if (o.grid) { var top = this.originalPosition.top + Math.round((position.top - this.originalPosition.top) / o.grid[1]) * o.grid[1]; position.top = this.containment ? (!(top < this.containment[1] || top > this.containment[3]) ? top : (!(top < this.containment[1]) ? top - o.grid[1] : top + o.grid[1])) : top; var left = this.originalPosition.left + Math.round((position.left - this.originalPosition.left) / o.grid[0]) * o.grid[0]; position.left = this.containment ? (!(left < this.containment[0] || left > this.containment[2]) ? left : (!(left < this.containment[0]) ? left - o.grid[0] : left + o.grid[0])) : left; }
        return position;
    }, _mouseDrag: function(e) {
        this.position = this._generatePosition(e); this.positionAbs = this._convertPositionTo("absolute"); $.ui.plugin.call(this, "sort", [e, this.ui()]); this.positionAbs = this._convertPositionTo("absolute"); this.helper[0].style.left = this.position.left + 'px'; this.helper[0].style.top = this.position.top + 'px'; for (var i = this.items.length - 1; i >= 0; i--) { var intersection = this._intersectsWithEdge(this.items[i]); if (!intersection) continue; if (this.items[i].item[0] != this.currentItem[0] && this.placeholder[intersection == 1 ? "next" : "prev"]()[0] != this.items[i].item[0] && !contains(this.placeholder[0], this.items[i].item[0]) && (this.options.type == 'semi-dynamic' ? !contains(this.element[0], this.items[i].item[0]) : true)) { this.updateOriginalPosition = this._generatePosition(e); this.direction = intersection == 1 ? "down" : "up"; this.options.sortIndicator.call(this, e, this.items[i]); this._propagate("change", e); break; } }
        this._contactContainers(e); if ($.ui.ddmanager) $.ui.ddmanager.drag(this, e); this.element.triggerHandler("sort", [e, this.ui()], this.options["sort"]); return false;
    }, _rearrange: function(e, i, a, hardRefresh) { a ? a[0].appendChild(this.placeholder[0]) : i.item[0].parentNode.insertBefore(this.placeholder[0], (this.direction == 'down' ? i.item[0] : i.item[0].nextSibling)); this.counter = this.counter ? ++this.counter : 1; var self = this, counter = this.counter; window.setTimeout(function() { if (counter == self.counter) self.refreshPositions(!hardRefresh); }, 0); }, _mouseStop: function(e, noPropagation) {
        if ($.ui.ddmanager && !this.options.dropBehaviour)
            $.ui.ddmanager.drop(this, e); if (this.options.revert) { var self = this; var cur = self.placeholder.offset(); $(this.helper).animate({ left: cur.left - this.offset.parent.left - self.margins.left + (this.offsetParent[0] == document.body ? 0 : this.offsetParent[0].scrollLeft), top: cur.top - this.offset.parent.top - self.margins.top + (this.offsetParent[0] == document.body ? 0 : this.offsetParent[0].scrollTop) }, parseInt(this.options.revert, 10) || 500, function() { self._clear(e); }); } else { this._clear(e, noPropagation); }
        return false;
    }, _clear: function(e, noPropagation) {
        if (!this._noFinalSort) this.placeholder.before(this.currentItem); this._noFinalSort = null; if (this.options.helper == "original")
            this.currentItem.css(this._storedCSS).removeClass("ui-sortable-helper"); else
            this.currentItem.show(); if (this.domPosition.prev != this.currentItem.prev().not(".ui-sortable-helper")[0] || this.domPosition.parent != this.currentItem.parent()[0]) this._propagate("update", e, null, noPropagation); if (!contains(this.element[0], this.currentItem[0])) { this._propagate("remove", e, null, noPropagation); for (var i = this.containers.length - 1; i >= 0; i--) { if (contains(this.containers[i].element[0], this.currentItem[0])) { this.containers[i]._propagate("update", e, this, noPropagation); this.containers[i]._propagate("receive", e, this, noPropagation); } }; }; for (var i = this.containers.length - 1; i >= 0; i--) { this.containers[i]._propagate("deactivate", e, this, noPropagation); if (this.containers[i].containerCache.over) { this.containers[i]._propagate("out", e, this); this.containers[i].containerCache.over = 0; } }
        this.dragging = false; if (this.cancelHelperRemoval) { this._propagate("beforeStop", e, null, noPropagation); this._propagate("stop", e, null, noPropagation); return false; }
        this._propagate("beforeStop", e, null, noPropagation); this.placeholder.remove(); if (this.options.helper != "original") this.helper.remove(); this.helper = null; this._propagate("stop", e, null, noPropagation); return true;
    } 
    })); $.extend($.ui.sortable, { getter: "serialize toArray", defaults: { helper: "original", tolerance: "guess", distance: 1, delay: 0, scroll: true, scrollSensitivity: 20, scrollSpeed: 20, cancel: ":input", items: '> *', zIndex: 1000, dropOnEmpty: true, appendTo: "parent", sortIndicator: $.ui.sortable.prototype._rearrange, scope: "default", forcePlaceholderSize: false} }); $.ui.plugin.add("sortable", "cursor", { start: function(e, ui) { var t = $('body'); if (t.css("cursor")) ui.options._cursor = t.css("cursor"); t.css("cursor", ui.options.cursor); }, beforeStop: function(e, ui) { if (ui.options._cursor) $('body').css("cursor", ui.options._cursor); } }); $.ui.plugin.add("sortable", "zIndex", { start: function(e, ui) { var t = ui.helper; if (t.css("zIndex")) ui.options._zIndex = t.css("zIndex"); t.css('zIndex', ui.options.zIndex); }, beforeStop: function(e, ui) { if (ui.options._zIndex) $(ui.helper).css('zIndex', ui.options._zIndex); } }); $.ui.plugin.add("sortable", "opacity", { start: function(e, ui) { var t = ui.helper; if (t.css("opacity")) ui.options._opacity = t.css("opacity"); t.css('opacity', ui.options.opacity); }, beforeStop: function(e, ui) { if (ui.options._opacity) $(ui.helper).css('opacity', ui.options._opacity); } }); $.ui.plugin.add("sortable", "scroll", { start: function(e, ui) { var o = ui.options; var i = $(this).data("sortable"); i.overflowY = function(el) { do { if (/auto|scroll/.test(el.css('overflow')) || (/auto|scroll/).test(el.css('overflow-y'))) return el; el = el.parent(); } while (el[0].parentNode); return $(document); } (i.currentItem); i.overflowX = function(el) { do { if (/auto|scroll/.test(el.css('overflow')) || (/auto|scroll/).test(el.css('overflow-x'))) return el; el = el.parent(); } while (el[0].parentNode); return $(document); } (i.currentItem); if (i.overflowY[0] != document && i.overflowY[0].tagName != 'HTML') i.overflowYOffset = i.overflowY.offset(); if (i.overflowX[0] != document && i.overflowX[0].tagName != 'HTML') i.overflowXOffset = i.overflowX.offset(); }, sort: function(e, ui) {
        var o = ui.options; var i = $(this).data("sortable"); if (i.overflowY[0] != document && i.overflowY[0].tagName != 'HTML') {
            if ((i.overflowYOffset.top + i.overflowY[0].offsetHeight) - e.pageY < o.scrollSensitivity)
                i.overflowY[0].scrollTop = i.overflowY[0].scrollTop + o.scrollSpeed; if (e.pageY - i.overflowYOffset.top < o.scrollSensitivity)
                i.overflowY[0].scrollTop = i.overflowY[0].scrollTop - o.scrollSpeed;
        } else {
            if (e.pageY - $(document).scrollTop() < o.scrollSensitivity)
                $(document).scrollTop($(document).scrollTop() - o.scrollSpeed); if ($(window).height() - (e.pageY - $(document).scrollTop()) < o.scrollSensitivity)
                $(document).scrollTop($(document).scrollTop() + o.scrollSpeed);
        }
        if (i.overflowX[0] != document && i.overflowX[0].tagName != 'HTML') {
            if ((i.overflowXOffset.left + i.overflowX[0].offsetWidth) - e.pageX < o.scrollSensitivity)
                i.overflowX[0].scrollLeft = i.overflowX[0].scrollLeft + o.scrollSpeed; if (e.pageX - i.overflowXOffset.left < o.scrollSensitivity)
                i.overflowX[0].scrollLeft = i.overflowX[0].scrollLeft - o.scrollSpeed;
        } else {
            if (e.pageX - $(document).scrollLeft() < o.scrollSensitivity)
                $(document).scrollLeft($(document).scrollLeft() - o.scrollSpeed); if ($(window).width() - (e.pageX - $(document).scrollLeft()) < o.scrollSensitivity)
                $(document).scrollLeft($(document).scrollLeft() + o.scrollSpeed);
        } 
    } 
    }); $.ui.plugin.add("sortable", "axis", { sort: function(e, ui) { var i = $(this).data("sortable"); if (ui.options.axis == "y") i.position.left = i.originalPosition.left; if (ui.options.axis == "x") i.position.top = i.originalPosition.top; } });
})(jQuery);



///////////////////jquery.cookie


/**
* Cookie plugin
*
* Copyright (c) 2006 Klaus Hartl (stilbuero.de)
* Dual licensed under the MIT and GPL licenses:
* http://www.opensource.org/licenses/mit-license.php
* http://www.gnu.org/licenses/gpl.html
*
*/

/**
* Create a cookie with the given name and value and other optional parameters.
*
* @example $.cookie('the_cookie', 'the_value');
* @desc Set the value of a cookie.
* @example $.cookie('the_cookie', 'the_value', { expires: 7, path: '/', domain: 'jquery.com', secure: true });
* @desc Create a cookie with all available options.
* @example $.cookie('the_cookie', 'the_value');
* @desc Create a session cookie.
* @example $.cookie('the_cookie', null);
* @desc Delete a cookie by passing null as value. Keep in mind that you have to use the same path and domain
*       used when the cookie was set.
*
* @param String name The name of the cookie.
* @param String value The value of the cookie.
* @param Object options An object literal containing key/value pairs to provide optional cookie attributes.
* @option Number|Date expires Either an integer specifying the expiration date from now on in days or a Date object.
*                             If a negative value is specified (e.g. a date in the past), the cookie will be deleted.
*                             If set to null or omitted, the cookie will be a session cookie and will not be retained
*                             when the the browser exits.
* @option String path The value of the path atribute of the cookie (default: path of page that created the cookie).
* @option String domain The value of the domain attribute of the cookie (default: domain of page that created the cookie).
* @option Boolean secure If true, the secure attribute of the cookie will be set and the cookie transmission will
*                        require a secure protocol (like HTTPS).
* @type undefined
*
* @name $.cookie
* @cat Plugins/Cookie
* @author Klaus Hartl/klaus.hartl@stilbuero.de
*/

/**
* Get the value of a cookie with the given name.
*
* @example $.cookie('the_cookie');
* @desc Get the value of a cookie.
*
* @param String name The name of the cookie.
* @return The value of the cookie.
* @type String
*
* @name $.cookie
* @cat Plugins/Cookie
* @author Klaus Hartl/klaus.hartl@stilbuero.de
*/
jQuery.cookie = function(name, value, options) {
    if (typeof value != 'undefined') { // name and value given, set cookie
        options = options || {};
        if (value === null) {
            value = '';
            options.expires = -1;
        }
        var expires = '';
        if (options.expires && (typeof options.expires == 'number' || options.expires.toUTCString)) {
            var date;
            if (typeof options.expires == 'number') {
                date = new Date();
                date.setTime(date.getTime() + (options.expires * 24 * 60 * 60 * 1000));
            } else {
                date = options.expires;
            }
            expires = '; expires=' + date.toUTCString(); // use expires attribute, max-age is not supported by IE
        }
        // CAUTION: Needed to parenthesize options.path and options.domain
        // in the following expressions, otherwise they evaluate to undefined
        // in the packed version for some reason...
        var path = options.path ? '; path=' + (options.path) : '';
        var domain = options.domain ? '; domain=' + (options.domain) : '';
        var secure = options.secure ? '; secure' : '';
        document.cookie = [name, '=', encodeURIComponent(value), expires, path, domain, secure].join('');
    } else { // only name given, get cookie
        var cookieValue = null;
        if (document.cookie && document.cookie != '') {
            var cookies = document.cookie.split(';');
            for (var i = 0; i < cookies.length; i++) {
                var cookie = jQuery.trim(cookies[i]);
                // Does this cookie string begin with the name we want?
                if (cookie.substring(0, name.length + 1) == (name + '=')) {
                    cookieValue = decodeURIComponent(cookie.substring(name.length + 1));
                    break;
                }
            }
        }
        return cookieValue;
    }
};



///////////////////////jquery.scrollable



/**
* jquery.scrollable 1.0.2. Put your HTML scroll.
* 
* Copyright (c) 2009 Tero Piirainen
* http://flowplayer.org/tools/scrollable.html
*
* Dual licensed under MIT and GPL 2+ licenses
* http://www.opensource.org/licenses
*
* Launch  : March 2008
* Version : 1.0.2 - Tue Feb 24 2009 10:52:08 GMT-0000 (GMT+00:00)
*/
(function($) {

    function fireEvent(opts, name, self, arg) {
        var fn = opts[name];

        if ($.isFunction(fn)) {
            try {
                return fn.call(self, arg);

            } catch (error) {
                if (opts.alert) {
                    alert("Error calling scrollable." + name + ": " + error);
                } else {
                    throw error;
                }
                return false;
            }
        }
        return true;
    }

    var current = null;


    // constructor
    function Scrollable(root, conf) {

        // current instance
        var self = this;
        if (!current) { current = self; }

        // horizontal flag
        var horizontal = !conf.vertical;


        // wrap (root elements for items)
        var wrap = $(conf.items, root);

        // current index
        var index = 0;


        // get handle to navigational elements
        var navi = root.siblings(conf.navi).eq(0);
        var prev = root.siblings(conf.prev).eq(0);
        var next = root.siblings(conf.next).eq(0);
        var prevPage = root.siblings(conf.prevPage).eq(0);
        var nextPage = root.siblings(conf.nextPage).eq(0);


        // methods
        $.extend(self, {

            getVersion: function() {
                return [1, 0, 1];
            },

            getIndex: function() {
                return index;
            },

            getConf: function() {
                return conf;
            },

            getSize: function() {
                return self.getItems().size();
            },

            getPageAmount: function() {
                return Math.ceil(this.getSize() / conf.size);
            },

            getPageIndex: function() {
                return Math.ceil(index / conf.size);
            },

            getRoot: function() {
                return root;
            },

            getItemWrap: function() {
                return wrap;
            },

            getItems: function() {
                return wrap.children();
            },

            /* all seeking functions depend on this */
            seekTo: function(i, time, fn) {

                // default speed
                time = time || conf.speed;

                // function given as second argument
                if ($.isFunction(time)) {
                    fn = time;
                    time = conf.speed;
                }

                if (i < 0) { i = 0; }
                if (i > self.getSize() - conf.size) { return self; }

                var item = self.getItems().eq(i);
                if (!item.length) { return self; }

                // onBeforeSeek
                if (fireEvent(conf, "onBeforeSeek", self, i) === false) {
                    return self;
                }

                if (horizontal) {
                    var left = -(item.outerWidth(true) * i);
                    wrap.animate({ left: left }, time, conf.easing, fn ? function() { fn.call(self); } : null);

                } else {
                    var top = -(item.outerHeight(true) * i); // wrap.offset().top - item.offset().top;					
                    wrap.animate({ top: top }, time, conf.easing, fn ? function() { fn.call(self); } : null);
                }


                // navi status update
                if (navi.length) {
                    var klass = conf.activeClass;
                    var page = Math.ceil(i / conf.size);
                    page = Math.min(page, navi.children().length - 1);
                    navi.children().removeClass(klass).eq(page).addClass(klass);
                }

                // prev buttons disabled flag
                if (i === 0) {
                    prev.add(prevPage).addClass(conf.disabledClass);
                } else {
                    prev.add(prevPage).removeClass(conf.disabledClass);
                }

                // next buttons disabled flag
                if (i >= self.getSize() - conf.size) {
                    next.add(nextPage).addClass(conf.disabledClass);
                } else {
                    next.add(nextPage).removeClass(conf.disabledClass);
                }

                current = self;
                index = i;

                // onSeek after index being updated
                fireEvent(conf, "onSeek", self, i);

                return self;

            },

            move: function(offset, time, fn) {
                var to = index + offset;
                if (conf.loop && to > (self.getSize() - conf.size)) {
                    to = 0;
                }
                return this.seekTo(to, time, fn);
            },

            next: function(time, fn) {
                return this.move(1, time, fn);
            },

            prev: function(time, fn) {
                return this.move(-1, time, fn);
            },

            movePage: function(offset, time, fn) {
                return this.move(conf.size * offset, time, fn);
            },

            setPage: function(page, time, fn) {
                var size = conf.size;
                var index = size * page;
                var lastPage = index + size >= this.getSize();
                if (lastPage) {
                    index = this.getSize() - conf.size;
                }
                return this.seekTo(index, time, fn);
            },

            prevPage: function(time, fn) {
                return this.setPage(this.getPageIndex() - 1, time, fn);
            },

            nextPage: function(time, fn) {
                return this.setPage(this.getPageIndex() + 1, time, fn);
            },

            begin: function(time, fn) {
                return this.seekTo(0, time, fn);
            },

            end: function(time, fn) {
                return this.seekTo(this.getSize() - conf.size, time, fn);
            },

            reload: function() {
                return load();
            },

            click: function(index, time, fn) {

                var item = self.getItems().eq(index);
                var klass = conf.activeClass;

                if (!item.hasClass(klass) && (index >= 0 || index < this.getSize())) {
                    self.getItems().removeClass(klass);
                    item.addClass(klass);
                    var delta = Math.floor(conf.size / 2);
                    var to = index - delta;

                    // next to last item must work
                    if (to > self.getSize() - conf.size) { to--; }

                    if (to !== index) {
                        return this.seekTo(to, time, fn);
                    }
                }

                return self;
            }

        });


        // mousewheel
        if ($.isFunction($.fn.mousewheel)) {
            root.bind("mousewheel.scrollable", function(e, delta) {
                // opera goes to opposite direction
                var step = $.browser.opera ? 1 : -1;

                self.move(delta > 0 ? step : -step, 50);
                return false;
            });
        }

        // prev button		
        prev.addClass(conf.disabledClass).click(function() {
            self.prev();
        });


        // next button
        next.click(function() {
            self.next();
        });

        // prev page button
        nextPage.click(function() {
            self.nextPage();
        });


        // next page button
        prevPage.addClass(conf.disabledClass).click(function() {
            self.prevPage();
        });


        // keyboard
        if (conf.keyboard) {

            // unfortunately window.keypress does not work on IE.
            $(window).unbind("keypress.scrollable").bind("keypress.scrollable", function(evt) {

                var el = current;
                if (!el) { return; }

                if (horizontal && (evt.keyCode == 37 || evt.keyCode == 39)) {
                    el.move(evt.keyCode == 37 ? -1 : 1);
                    return evt.preventDefault();
                }

                if (!horizontal && (evt.keyCode == 38 || evt.keyCode == 40)) {
                    el.move(evt.keyCode == 38 ? -1 : 1);
                    return evt.preventDefault();
                }

                return true;

            });
        }

        // navi 			
        function load() {

            navi.each(function() {

                var nav = $(this);

                // generate new entries
                if (nav.is(":empty") || nav.data("me") == self) {

                    nav.empty();
                    nav.data("me", self);

                    for (var i = 0; i < self.getPageAmount(); i++) {

                        var item = $("<" + conf.naviItem + "/>").attr("href", i).click(function(e) {
                            var el = $(this);
                            el.parent().children().removeClass(conf.activeClass);
                            el.addClass(conf.activeClass);
                            self.setPage(el.attr("href"));
                            return e.preventDefault();
                        });

                        if (i === 0) { item.addClass(conf.activeClass); }
                        nav.append(item);
                    }

                    // assign onClick events to existing entries
                } else {

                    // find a entries first -> syntaxically correct
                    var els = nav.children();

                    els.each(function(i) {
                        var item = $(this);
                        item.attr("href", i);
                        if (i === 0) { item.addClass(conf.activeClass); }

                        item.click(function() {
                            nav.find("." + conf.activeClass).removeClass(conf.activeClass);
                            item.addClass(conf.activeClass);
                            self.setPage(item.attr("href"));
                        });

                    });
                }

            });


            // item.click()
            if (conf.clickable) {
                self.getItems().each(function(index, arg) {
                    var el = $(this);
                    if (!el.data("set")) {
                        el.bind("click.scrollable", function() {
                            self.click(index);
                        });
                        el.data("set", true);
                    }
                });
            }


            // hover
            if (conf.hoverClass) {
                self.getItems().hover(function() {
                    $(this).addClass(conf.hoverClass);
                }, function() {
                    $(this).removeClass(conf.hoverClass);
                });
            }

            return self;
        }

        load();


        // interval stuff
        var timer = null;

        function setTimer() {
            timer = setInterval(function() {
                self.next();

            }, conf.interval);
        }

        if (conf.interval > 0) {

            root.hover(function() {
                clearInterval(timer);
            }, function() {
                setTimer();
            });

            setTimer();
        }

    }


    // jQuery plugin implementation
    jQuery.prototype.scrollable = function(conf) {

        // already constructed --> return API
        var api = this.eq(typeof conf == 'number' ? conf : 0).data("scrollable");
        if (api) { return api; }


        var opts = {

            // basics
            size: 5,
            vertical: false,
            clickable: true,
            loop: false,
            interval: 0,
            speed: 400,
            keyboard: true,

            // other
            activeClass: 'active',
            disabledClass: 'disabled',
            hoverClass: null,
            easing: 'swing',

            // navigational elements
            items: '.items',
            prev: '.prev',
            next: '.next',
            prevPage: '.prevPage',
            nextPage: '.nextPage',
            navi: '.navi',
            naviItem: 'a',


            // callbacks
            onBeforeSeek: null,
            onSeek: null,
            alert: true
        };


        $.extend(opts, conf);

        this.each(function() {
            var el = new Scrollable($(this), opts);
            $(this).data("scrollable", el);
        });

        return this;

    };


})(jQuery);








/* Copyright (c) 2006 Brandon Aaron (brandon.aaron@gmail.com || http://brandonaaron.net)
* Dual licensed under the MIT (http://www.opensource.org/licenses/mit-license.php)
* and GPL (http://www.opensource.org/licenses/gpl-license.php) licenses.
* Thanks to: http://adomas.org/javascript-mouse-wheel/ for some pointers.
* Thanks to: Mathias Bank(http://www.mathias-bank.de) for a scope bug fix.
*
* $LastChangedDate: 2007-12-20 09:02:08 -0600 (Thu, 20 Dec 2007) $
* $Rev: 4265 $
*
* Version: 3.0
* 
* Requires: $ 1.2.2+
*/

(function($) {

    $.event.special.mousewheel = {
        setup: function() {
            var handler = $.event.special.mousewheel.handler;

            // Fix pageX, pageY, clientX and clientY for mozilla
            if ($.browser.mozilla)
                $(this).bind('mousemove.mousewheel', function(event) {
                    $.data(this, 'mwcursorposdata', {
                        pageX: event.pageX,
                        pageY: event.pageY,
                        clientX: event.clientX,
                        clientY: event.clientY
                    });
                });

            if (this.addEventListener)
                this.addEventListener(($.browser.mozilla ? 'DOMMouseScroll' : 'mousewheel'), handler, false);
            else
                this.onmousewheel = handler;
        },

        teardown: function() {
            var handler = $.event.special.mousewheel.handler;

            $(this).unbind('mousemove.mousewheel');

            if (this.removeEventListener)
                this.removeEventListener(($.browser.mozilla ? 'DOMMouseScroll' : 'mousewheel'), handler, false);
            else
                this.onmousewheel = function() { };

            $.removeData(this, 'mwcursorposdata');
        },

        handler: function(event) {
            var args = Array.prototype.slice.call(arguments, 1);

            event = $.event.fix(event || window.event);
            // Get correct pageX, pageY, clientX and clientY for mozilla
            $.extend(event, $.data(this, 'mwcursorposdata') || {});
            var delta = 0, returnValue = true;

            if (event.wheelDelta) delta = event.wheelDelta / 120;
            if (event.detail) delta = -event.detail / 3;
            if ($.browser.opera) delta = -event.wheelDelta;

            event.data = event.data || {};
            event.type = "mousewheel";

            // Add delta to the front of the arguments
            args.unshift(delta);
            // Add event to the front of the arguments
            args.unshift(event);

            return $.event.handle.apply(this, args);
        }
    };

    $.fn.extend({
        mousewheel: function(fn) {
            return fn ? this.bind("mousewheel", fn) : this.trigger("mousewheel");
        },

        unmousewheel: function(fn) {
            return this.unbind("mousewheel", fn);
        }
    });

})(jQuery);


