

var Prototype = {
  Version: '1.6.0.3',

  Browser: {
    IE:     !!(window.attachEvent &&
      navigator.userAgent.indexOf('Opera') === -1),
    Opera:  navigator.userAgent.indexOf('Opera') > -1,
    WebKit: navigator.userAgent.indexOf('AppleWebKit/') > -1,
    Gecko:  navigator.userAgent.indexOf('Gecko') > -1 &&
      navigator.userAgent.indexOf('KHTML') === -1,
    MobileSafari: !!navigator.userAgent.match(/Apple.*Mobile.*Safari/)
  },

  BrowserFeatures: {
    XPath: !!document.evaluate,
    SelectorsAPI: !!document.querySelector,
    ElementExtensions: !!window.HTMLElement,
    SpecificElementExtensions:
      document.createElement('div')['__proto__'] &&
      document.createElement('div')['__proto__'] !==
        document.createElement('form')['__proto__']
  },

  ScriptFragment: '<script[^>]*>([\\S\\s]*?)<\/script>',
  JSONFilter: /^\/\*-secure-([\s\S]*)\*\/\s*$/,

  emptyFunction: function() { },
  K: function(x) { return x }
};

if (Prototype.Browser.MobileSafari)
  Prototype.BrowserFeatures.SpecificElementExtensions = false;


/* Based on Alex Arnell's inheritance implementation. */
var Class = {
  create: function() {
    var parent = null, properties = $A(arguments);
    if (Object.isFunction(properties[0]))
      parent = properties.shift();

    function klass() {
      this.initialize.apply(this, arguments);
    }

    Object.extend(klass, Class.Methods);
    klass.superclass = parent;
    klass.subclasses = [];

    if (parent) {
      var subclass = function() { };
      subclass.prototype = parent.prototype;
      klass.prototype = new subclass;
      parent.subclasses.push(klass);
    }

    for (var i = 0; i < properties.length; i++)
      klass.addMethods(properties[i]);

    if (!klass.prototype.initialize)
      klass.prototype.initialize = Prototype.emptyFunction;

    klass.prototype.constructor = klass;

    return klass;
  }
};

Class.Methods = {
  addMethods: function(source) {
    var ancestor   = this.superclass && this.superclass.prototype;
    var properties = Object.keys(source);

    if (!Object.keys({ toString: true }).length)
      properties.push("toString", "valueOf");

    for (var i = 0, length = properties.length; i < length; i++) {
      var property = properties[i], value = source[property];
      if (ancestor && Object.isFunction(value) &&
          value.argumentNames().first() == "$super") {
        var method = value;
        value = (function(m) {
          return function() { return ancestor[m].apply(this, arguments) };
        })(property).wrap(method);

        value.valueOf = method.valueOf.bind(method);
        value.toString = method.toString.bind(method);
      }
      this.prototype[property] = value;
    }

    return this;
  }
};

var Abstract = { };

Object.extend = function(destination, source) {
  for (var property in source)
    destination[property] = source[property];
  return destination;
};

Object.extend(Object, {
  inspect: function(object) {
    try {
      if (Object.isUndefined(object)) return 'undefined';
      if (object === null) return 'null';
      return object.inspect ? object.inspect() : String(object);
    } catch (e) {
      if (e instanceof RangeError) return '...';
      throw e;
    }
  },

  toJSON: function(object) {
    var type = typeof object;
    switch (type) {
      case 'undefined':
      case 'function':
      case 'unknown': return;
      case 'boolean': return object.toString();
    }

    if (object === null) return 'null';
    if (object.toJSON) return object.toJSON();
    if (Object.isElement(object)) return;

    var results = [];
    for (var property in object) {
      var value = Object.toJSON(object[property]);
      if (!Object.isUndefined(value))
        results.push(property.toJSON() + ': ' + value);
    }

    return '{' + results.join(', ') + '}';
  },

  toQueryString: function(object) {
    return $H(object).toQueryString();
  },

  toHTML: function(object) {
    return object && object.toHTML ? object.toHTML() : String.interpret(object);
  },

  keys: function(object) {
    var keys = [];
    for (var property in object)
      keys.push(property);
    return keys;
  },

  values: function(object) {
    var values = [];
    for (var property in object)
      values.push(object[property]);
    return values;
  },

  clone: function(object) {
    return Object.extend({ }, object);
  },

  isElement: function(object) {
    return !!(object && object.nodeType == 1);
  },

  isArray: function(object) {
    return object != null && typeof object == "object" &&
      'splice' in object && 'join' in object;
  },

  isHash: function(object) {
    return object instanceof Hash;
  },

  isFunction: function(object) {
    return typeof object == "function";
  },

  isString: function(object) {
    return typeof object == "string";
  },

  isNumber: function(object) {
    return typeof object == "number";
  },

  isUndefined: function(object) {
    return typeof object == "undefined";
  }
});

Object.extend(Function.prototype, {
  argumentNames: function() {
    var names = this.toString().match(/^[\s\(]*function[^(]*\(([^\)]*)\)/)[1]
      .replace(/\s+/g, '').split(',');
    return names.length == 1 && !names[0] ? [] : names;
  },

  bind: function() {
    if (arguments.length < 2 && Object.isUndefined(arguments[0])) return this;
    var __method = this, args = $A(arguments), object = args.shift();
    return function() {
      return __method.apply(object, args.concat($A(arguments)));
    }
  },

  bindAsEventListener: function() {
    var __method = this, args = $A(arguments), object = args.shift();
    return function(event) {
      return __method.apply(object, [event || window.event].concat(args));
    }
  },

  curry: function() {
    if (!arguments.length) return this;
    var __method = this, args = $A(arguments);
    return function() {
      return __method.apply(this, args.concat($A(arguments)));
    }
  },

  delay: function() {
    var __method = this, args = $A(arguments), timeout = args.shift() * 1000;
    return window.setTimeout(function() {
      return __method.apply(__method, args);
    }, timeout);
  },

  defer: function() {
    var args = [0.01].concat($A(arguments));
    return this.delay.apply(this, args);
  },

  wrap: function(wrapper) {
    var __method = this;
    return function() {
      return wrapper.apply(this, [__method.bind(this)].concat($A(arguments)));
    }
  },

  methodize: function() {
    if (this._methodized) return this._methodized;
    var __method = this;
    return this._methodized = function() {
      return __method.apply(null, [this].concat($A(arguments)));
    };
  }
});

Date.prototype.toJSON = function() {
  return '"' + this.getUTCFullYear() + '-' +
    (this.getUTCMonth() + 1).toPaddedString(2) + '-' +
    this.getUTCDate().toPaddedString(2) + 'T' +
    this.getUTCHours().toPaddedString(2) + ':' +
    this.getUTCMinutes().toPaddedString(2) + ':' +
    this.getUTCSeconds().toPaddedString(2) + 'Z"';
};

var Try = {
  these: function() {
    var returnValue;

    for (var i = 0, length = arguments.length; i < length; i++) {
      var lambda = arguments[i];
      try {
        returnValue = lambda();
        break;
      } catch (e) { }
    }

    return returnValue;
  }
};

RegExp.prototype.match = RegExp.prototype.test;

RegExp.escape = function(str) {
  return String(str).replace(/([.*+?^=!:${}()|[\]\/\\])/g, '\\$1');
};

/*--------------------------------------------------------------------------*/

var PeriodicalExecuter = Class.create({
  initialize: function(callback, frequency) {
    this.callback = callback;
    this.frequency = frequency;
    this.currentlyExecuting = false;

    this.registerCallback();
  },

  registerCallback: function() {
    this.timer = setInterval(this.onTimerEvent.bind(this), this.frequency * 1000);
  },

  execute: function() {
    this.callback(this);
  },

  stop: function() {
    if (!this.timer) return;
    clearInterval(this.timer);
    this.timer = null;
  },

  onTimerEvent: function() {
    if (!this.currentlyExecuting) {
      try {
        this.currentlyExecuting = true;
        this.execute();
      } finally {
        this.currentlyExecuting = false;
      }
    }
  }
});
Object.extend(String, {
  interpret: function(value) {
    return value == null ? '' : String(value);
  },
  specialChar: {
    '\b': '\\b',
    '\t': '\\t',
    '\n': '\\n',
    '\f': '\\f',
    '\r': '\\r',
    '\\': '\\\\'
  }
});

Object.extend(String.prototype, {
  gsub: function(pattern, replacement) {
    var result = '', source = this, match;
    replacement = arguments.callee.prepareReplacement(replacement);

    while (source.length > 0) {
      if (match = source.match(pattern)) {
        result += source.slice(0, match.index);
        result += String.interpret(replacement(match));
        source  = source.slice(match.index + match[0].length);
      } else {
        result += source, source = '';
      }
    }
    return result;
  },

  sub: function(pattern, replacement, count) {
    replacement = this.gsub.prepareReplacement(replacement);
    count = Object.isUndefined(count) ? 1 : count;

    return this.gsub(pattern, function(match) {
      if (--count < 0) return match[0];
      return replacement(match);
    });
  },

  scan: function(pattern, iterator) {
    this.gsub(pattern, iterator);
    return String(this);
  },

  truncate: function(length, truncation) {
    length = length || 30;
    truncation = Object.isUndefined(truncation) ? '...' : truncation;
    return this.length > length ?
      this.slice(0, length - truncation.length) + truncation : String(this);
  },

  strip: function() {
    return this.replace(/^\s+/, '').replace(/\s+$/, '');
  },

  stripTags: function() {
    return this.replace(/<\/?[^>]+>/gi, '');
  },

  stripScripts: function() {
    return this.replace(new RegExp(Prototype.ScriptFragment, 'img'), '');
  },

  extractScripts: function() {
    var matchAll = new RegExp(Prototype.ScriptFragment, 'img');
    var matchOne = new RegExp(Prototype.ScriptFragment, 'im');
    return (this.match(matchAll) || []).map(function(scriptTag) {
      return (scriptTag.match(matchOne) || ['', ''])[1];
    });
  },

  evalScripts: function() {
    return this.extractScripts().map(function(script) { return eval(script) });
  },

  escapeHTML: function() {
    var self = arguments.callee;
    self.text.data = this;
    return self.div.innerHTML;
  },

  unescapeHTML: function() {
    var div = new Element('div');
    div.innerHTML = this.stripTags();
    return div.childNodes[0] ? (div.childNodes.length > 1 ?
      $A(div.childNodes).inject('', function(memo, node) { return memo+node.nodeValue }) :
      div.childNodes[0].nodeValue) : '';
  },

  toQueryParams: function(separator) {
    var match = this.strip().match(/([^?#]*)(#.*)?$/);
    if (!match) return { };

    return match[1].split(separator || '&').inject({ }, function(hash, pair) {
      if ((pair = pair.split('='))[0]) {
        var key = decodeURIComponent(pair.shift());
        var value = pair.length > 1 ? pair.join('=') : pair[0];
        if (value != undefined) value = decodeURIComponent(value);

        if (key in hash) {
          if (!Object.isArray(hash[key])) hash[key] = [hash[key]];
          hash[key].push(value);
        }
        else hash[key] = value;
      }
      return hash;
    });
  },

  toArray: function() {
    return this.split('');
  },

  succ: function() {
    return this.slice(0, this.length - 1) +
      String.fromCharCode(this.charCodeAt(this.length - 1) + 1);
  },

  times: function(count) {
    return count < 1 ? '' : new Array(count + 1).join(this);
  },

  camelize: function() {
    var parts = this.split('-'), len = parts.length;
    if (len == 1) return parts[0];

    var camelized = this.charAt(0) == '-'
      ? parts[0].charAt(0).toUpperCase() + parts[0].substring(1)
      : parts[0];

    for (var i = 1; i < len; i++)
      camelized += parts[i].charAt(0).toUpperCase() + parts[i].substring(1);

    return camelized;
  },

  capitalize: function() {
    return this.charAt(0).toUpperCase() + this.substring(1).toLowerCase();
  },

  underscore: function() {
    return this.gsub(/::/, '/').gsub(/([A-Z]+)([A-Z][a-z])/,'#{1}_#{2}').gsub(/([a-z\d])([A-Z])/,'#{1}_#{2}').gsub(/-/,'_').toLowerCase();
  },

  dasherize: function() {
    return this.gsub(/_/,'-');
  },

  inspect: function(useDoubleQuotes) {
    var escapedString = this.gsub(/[\x00-\x1f\\]/, function(match) {
      var character = String.specialChar[match[0]];
      return character ? character : '\\u00' + match[0].charCodeAt().toPaddedString(2, 16);
    });
    if (useDoubleQuotes) return '"' + escapedString.replace(/"/g, '\\"') + '"';
    return "'" + escapedString.replace(/'/g, '\\\'') + "'";
  },

  toJSON: function() {
    return this.inspect(true);
  },

  unfilterJSON: function(filter) {
    return this.sub(filter || Prototype.JSONFilter, '#{1}');
  },

  isJSON: function() {
    var str = this;
    if (str.blank()) return false;
    str = this.replace(/\\./g, '@').replace(/"[^"\\\n\r]*"/g, '');
    return (/^[,:{}\[\]0-9.\-+Eaeflnr-u \n\r\t]*$/).test(str);
  },

  evalJSON: function(sanitize) {
    var json = this.unfilterJSON();
    try {
      if (!sanitize || json.isJSON()) return eval('(' + json + ')');
    } catch (e) { }
    throw new SyntaxError('Badly formed JSON string: ' + this.inspect());
  },

  include: function(pattern) {
    return this.indexOf(pattern) > -1;
  },

  startsWith: function(pattern) {
    return this.indexOf(pattern) === 0;
  },

  endsWith: function(pattern) {
    var d = this.length - pattern.length;
    return d >= 0 && this.lastIndexOf(pattern) === d;
  },

  empty: function() {
    return this == '';
  },

  blank: function() {
    return /^\s*$/.test(this);
  },

  interpolate: function(object, pattern) {
    return new Template(this, pattern).evaluate(object);
  }
});

if (Prototype.Browser.WebKit || Prototype.Browser.IE) Object.extend(String.prototype, {
  escapeHTML: function() {
    return this.replace(/&/g,'&amp;').replace(/</g,'&lt;').replace(/>/g,'&gt;');
  },
  unescapeHTML: function() {
    return this.stripTags().replace(/&amp;/g,'&').replace(/&lt;/g,'<').replace(/&gt;/g,'>');
  }
});

String.prototype.gsub.prepareReplacement = function(replacement) {
  if (Object.isFunction(replacement)) return replacement;
  var template = new Template(replacement);
  return function(match) { return template.evaluate(match) };
};

String.prototype.parseQuery = String.prototype.toQueryParams;

Object.extend(String.prototype.escapeHTML, {
  div:  document.createElement('div'),
  text: document.createTextNode('')
});

String.prototype.escapeHTML.div.appendChild(String.prototype.escapeHTML.text);

var Template = Class.create({
  initialize: function(template, pattern) {
    this.template = template.toString();
    this.pattern = pattern || Template.Pattern;
  },

  evaluate: function(object) {
    if (Object.isFunction(object.toTemplateReplacements))
      object = object.toTemplateReplacements();

    return this.template.gsub(this.pattern, function(match) {
      if (object == null) return '';

      var before = match[1] || '';
      if (before == '\\') return match[2];

      var ctx = object, expr = match[3];
      var pattern = /^([^.[]+|\[((?:.*?[^\\])?)\])(\.|\[|$)/;
      match = pattern.exec(expr);
      if (match == null) return before;

      while (match != null) {
        var comp = match[1].startsWith('[') ? match[2].gsub('\\\\]', ']') : match[1];
        ctx = ctx[comp];
        if (null == ctx || '' == match[3]) break;
        expr = expr.substring('[' == match[3] ? match[1].length : match[0].length);
        match = pattern.exec(expr);
      }

      return before + String.interpret(ctx);
    });
  }
});
Template.Pattern = /(^|.|\r|\n)(#\{(.*?)\})/;

var $break = { };

var Enumerable = {
  each: function(iterator, context) {
    var index = 0;
    try {
      this._each(function(value) {
        iterator.call(context, value, index++);
      });
    } catch (e) {
      if (e != $break) throw e;
    }
    return this;
  },

  eachSlice: function(number, iterator, context) {
    var index = -number, slices = [], array = this.toArray();
    if (number < 1) return array;
    while ((index += number) < array.length)
      slices.push(array.slice(index, index+number));
    return slices.collect(iterator, context);
  },

  all: function(iterator, context) {
    iterator = iterator || Prototype.K;
    var result = true;
    this.each(function(value, index) {
      result = result && !!iterator.call(context, value, index);
      if (!result) throw $break;
    });
    return result;
  },

  any: function(iterator, context) {
    iterator = iterator || Prototype.K;
    var result = false;
    this.each(function(value, index) {
      if (result = !!iterator.call(context, value, index))
        throw $break;
    });
    return result;
  },

  collect: function(iterator, context) {
    iterator = iterator || Prototype.K;
    var results = [];
    this.each(function(value, index) {
      results.push(iterator.call(context, value, index));
    });
    return results;
  },

  detect: function(iterator, context) {
    var result;
    this.each(function(value, index) {
      if (iterator.call(context, value, index)) {
        result = value;
        throw $break;
      }
    });
    return result;
  },

  findAll: function(iterator, context) {
    var results = [];
    this.each(function(value, index) {
      if (iterator.call(context, value, index))
        results.push(value);
    });
    return results;
  },

  grep: function(filter, iterator, context) {
    iterator = iterator || Prototype.K;
    var results = [];

    if (Object.isString(filter))
      filter = new RegExp(filter);

    this.each(function(value, index) {
      if (filter.match(value))
        results.push(iterator.call(context, value, index));
    });
    return results;
  },

  include: function(object) {
    if (Object.isFunction(this.indexOf))
      if (this.indexOf(object) != -1) return true;

    var found = false;
    this.each(function(value) {
      if (value == object) {
        found = true;
        throw $break;
      }
    });
    return found;
  },

  inGroupsOf: function(number, fillWith) {
    fillWith = Object.isUndefined(fillWith) ? null : fillWith;
    return this.eachSlice(number, function(slice) {
      while(slice.length < number) slice.push(fillWith);
      return slice;
    });
  },

  inject: function(memo, iterator, context) {
    this.each(function(value, index) {
      memo = iterator.call(context, memo, value, index);
    });
    return memo;
  },

  invoke: function(method) {
    var args = $A(arguments).slice(1);
    return this.map(function(value) {
      return value[method].apply(value, args);
    });
  },

  max: function(iterator, context) {
    iterator = iterator || Prototype.K;
    var result;
    this.each(function(value, index) {
      value = iterator.call(context, value, index);
      if (result == null || value >= result)
        result = value;
    });
    return result;
  },

  min: function(iterator, context) {
    iterator = iterator || Prototype.K;
    var result;
    this.each(function(value, index) {
      value = iterator.call(context, value, index);
      if (result == null || value < result)
        result = value;
    });
    return result;
  },

  partition: function(iterator, context) {
    iterator = iterator || Prototype.K;
    var trues = [], falses = [];
    this.each(function(value, index) {
      (iterator.call(context, value, index) ?
        trues : falses).push(value);
    });
    return [trues, falses];
  },

  pluck: function(property) {
    var results = [];
    this.each(function(value) {
      results.push(value[property]);
    });
    return results;
  },

  reject: function(iterator, context) {
    var results = [];
    this.each(function(value, index) {
      if (!iterator.call(context, value, index))
        results.push(value);
    });
    return results;
  },

  sortBy: function(iterator, context) {
    return this.map(function(value, index) {
      return {
        value: value,
        criteria: iterator.call(context, value, index)
      };
    }).sort(function(left, right) {
      var a = left.criteria, b = right.criteria;
      return a < b ? -1 : a > b ? 1 : 0;
    }).pluck('value');
  },

  toArray: function() {
    return this.map();
  },

  zip: function() {
    var iterator = Prototype.K, args = $A(arguments);
    if (Object.isFunction(args.last()))
      iterator = args.pop();

    var collections = [this].concat(args).map($A);
    return this.map(function(value, index) {
      return iterator(collections.pluck(index));
    });
  },

  size: function() {
    return this.toArray().length;
  },

  inspect: function() {
    return '#<Enumerable:' + this.toArray().inspect() + '>';
  }
};

Object.extend(Enumerable, {
  map:     Enumerable.collect,
  find:    Enumerable.detect,
  select:  Enumerable.findAll,
  filter:  Enumerable.findAll,
  member:  Enumerable.include,
  entries: Enumerable.toArray,
  every:   Enumerable.all,
  some:    Enumerable.any
});
function $A(iterable) {
  if (!iterable) return [];
  if (iterable.toArray) return iterable.toArray();
  var length = iterable.length || 0, results = new Array(length);
  while (length--) results[length] = iterable[length];
  return results;
}

if (Prototype.Browser.WebKit) {
  $A = function(iterable) {
    if (!iterable) return [];
    // In Safari, only use the `toArray` method if it's not a NodeList.
    // A NodeList is a function, has an function `item` property, and a numeric
    // `length` property. Adapted from Google Doctype.
    if (!(typeof iterable === 'function' && typeof iterable.length ===
        'number' && typeof iterable.item === 'function') && iterable.toArray)
      return iterable.toArray();
    var length = iterable.length || 0, results = new Array(length);
    while (length--) results[length] = iterable[length];
    return results;
  };
}

Array.from = $A;

Object.extend(Array.prototype, Enumerable);

if (!Array.prototype._reverse) Array.prototype._reverse = Array.prototype.reverse;

Object.extend(Array.prototype, {
  _each: function(iterator) {
    for (var i = 0, length = this.length; i < length; i++)
      iterator(this[i]);
  },

  clear: function() {
    this.length = 0;
    return this;
  },

  first: function() {
    return this[0];
  },

  last: function() {
    return this[this.length - 1];
  },

  compact: function() {
    return this.select(function(value) {
      return value != null;
    });
  },

  flatten: function() {
    return this.inject([], function(array, value) {
      return array.concat(Object.isArray(value) ?
        value.flatten() : [value]);
    });
  },

  without: function() {
    var values = $A(arguments);
    return this.select(function(value) {
      return !values.include(value);
    });
  },

  reverse: function(inline) {
    return (inline !== false ? this : this.toArray())._reverse();
  },

  reduce: function() {
    return this.length > 1 ? this : this[0];
  },

  uniq: function(sorted) {
    return this.inject([], function(array, value, index) {
      if (0 == index || (sorted ? array.last() != value : !array.include(value)))
        array.push(value);
      return array;
    });
  },

  intersect: function(array) {
    return this.uniq().findAll(function(item) {
      return array.detect(function(value) { return item === value });
    });
  },

  clone: function() {
    return [].concat(this);
  },

  size: function() {
    return this.length;
  },

  inspect: function() {
    return '[' + this.map(Object.inspect).join(', ') + ']';
  },

  toJSON: function() {
    var results = [];
    this.each(function(object) {
      var value = Object.toJSON(object);
      if (!Object.isUndefined(value)) results.push(value);
    });
    return '[' + results.join(', ') + ']';
  }
});

// use native browser JS 1.6 implementation if available
if (Object.isFunction(Array.prototype.forEach))
  Array.prototype._each = Array.prototype.forEach;

if (!Array.prototype.indexOf) Array.prototype.indexOf = function(item, i) {
  i || (i = 0);
  var length = this.length;
  if (i < 0) i = length + i;
  for (; i < length; i++)
    if (this[i] === item) return i;
  return -1;
};

if (!Array.prototype.lastIndexOf) Array.prototype.lastIndexOf = function(item, i) {
  i = isNaN(i) ? this.length : (i < 0 ? this.length + i : i) + 1;
  var n = this.slice(0, i).reverse().indexOf(item);
  return (n < 0) ? n : i - n - 1;
};

Array.prototype.toArray = Array.prototype.clone;

function $w(string) {
  if (!Object.isString(string)) return [];
  string = string.strip();
  return string ? string.split(/\s+/) : [];
}

if (Prototype.Browser.Opera){
  Array.prototype.concat = function() {
    var array = [];
    for (var i = 0, length = this.length; i < length; i++) array.push(this[i]);
    for (var i = 0, length = arguments.length; i < length; i++) {
      if (Object.isArray(arguments[i])) {
        for (var j = 0, arrayLength = arguments[i].length; j < arrayLength; j++)
          array.push(arguments[i][j]);
      } else {
        array.push(arguments[i]);
      }
    }
    return array;
  };
}
Object.extend(Number.prototype, {
  toColorPart: function() {
    return this.toPaddedString(2, 16);
  },

  succ: function() {
    return this + 1;
  },

  times: function(iterator, context) {
    $R(0, this, true).each(iterator, context);
    return this;
  },

  toPaddedString: function(length, radix) {
    var string = this.toString(radix || 10);
    return '0'.times(length - string.length) + string;
  },

  toJSON: function() {
    return isFinite(this) ? this.toString() : 'null';
  }
});

$w('abs round ceil floor').each(function(method){
  Number.prototype[method] = Math[method].methodize();
});
function $H(object) {
  return new Hash(object);
};

var Hash = Class.create(Enumerable, (function() {

  function toQueryPair(key, value) {
  	
    if (Object.isUndefined(value)) {
    	return key;
    }
    return key + '=' + urlencode(String.interpret(value));
//    return key + '=' + encodeURIComponent(String.interpret(value));
//    return key + '=' + escape(String.interpret(value));
  }

  return {
    initialize: function(object) {
      this._object = Object.isHash(object) ? object.toObject() : Object.clone(object);
    },

    _each: function(iterator) {
      for (var key in this._object) {
        var value = this._object[key], pair = [key, value];
        pair.key = key;
        pair.value = value;
        iterator(pair);
      }
    },

    set: function(key, value) {
      return this._object[key] = value;
    },

    get: function(key) {
      // simulating poorly supported hasOwnProperty
      if (this._object[key] !== Object.prototype[key])
        return this._object[key];
    },

    unset: function(key) {
      var value = this._object[key];
      delete this._object[key];
      return value;
    },

    toObject: function() {
      return Object.clone(this._object);
    },

    keys: function() {
      return this.pluck('key');
    },

    values: function() {
      return this.pluck('value');
    },

    index: function(value) {
      var match = this.detect(function(pair) {
        return pair.value === value;
      });
      return match && match.key;
    },

    merge: function(object) {
      return this.clone().update(object);
    },

    update: function(object) {
      return new Hash(object).inject(this, function(result, pair) {
        result.set(pair.key, pair.value);
        return result;
      });
    },

    toQueryString: function() {
      return this.inject([], function(results, pair) {
        var key = urlencode(pair.key), values = pair.value;

        if (values && typeof values == 'object') {
          if (Object.isArray(values))
            return results.concat(values.map(toQueryPair.curry(key)));
        } else {
        	results.push(toQueryPair(key, values));
        }
        return results;
      }).join('&');
    },

    inspect: function() {
      return '#<Hash:{' + this.map(function(pair) {
        return pair.map(Object.inspect).join(': ');
      }).join(', ') + '}>';
    },

    toJSON: function() {
      return Object.toJSON(this.toObject());
    },

    clone: function() {
      return new Hash(this);
    }
  }
})());

Hash.prototype.toTemplateReplacements = Hash.prototype.toObject;
Hash.from = $H;
var ObjectRange = Class.create(Enumerable, {
  initialize: function(start, end, exclusive) {
    this.start = start;
    this.end = end;
    this.exclusive = exclusive;
  },

  _each: function(iterator) {
    var value = this.start;
    while (this.include(value)) {
      iterator(value);
      value = value.succ();
    }
  },

  include: function(value) {
    if (value < this.start)
      return false;
    if (this.exclusive)
      return value < this.end;
    return value <= this.end;
  }
});

var $R = function(start, end, exclusive) {
  return new ObjectRange(start, end, exclusive);
};

var Ajax = {
  getTransport: function() {
    return Try.these(
      function() {return new XMLHttpRequest()},
      function() {return new ActiveXObject('Msxml2.XMLHTTP')},
      function() {return new ActiveXObject('Microsoft.XMLHTTP')}
    ) || false;
  },

  activeRequestCount: 0
};

Ajax.Responders = {
  responders: [],

  _each: function(iterator) {
    this.responders._each(iterator);
  },

  register: function(responder) {
    if (!this.include(responder))
      this.responders.push(responder);
  },

  unregister: function(responder) {
    this.responders = this.responders.without(responder);
  },

  dispatch: function(callback, request, transport, json) {
    this.each(function(responder) {
      if (Object.isFunction(responder[callback])) {
        try {
          responder[callback].apply(responder, [request, transport, json]);
        } catch (e) { }
      }
    });
  }
};

Object.extend(Ajax.Responders, Enumerable);

Ajax.Responders.register({
  onCreate:   function() { Ajax.activeRequestCount++ },
  onComplete: function() { Ajax.activeRequestCount-- }
});

Ajax.Base = Class.create({
  initialize: function(options) {
    this.options = {
      method:       'post',
      asynchronous: true,
      contentType:  'application/x-www-form-urlencoded',
      encoding:     'UTF-8',
      parameters:   '',
      evalJSON:     true,
      evalJS:       true
    };
    Object.extend(this.options, options || { });

    this.options.method = this.options.method.toLowerCase();

    if (Object.isString(this.options.parameters))
      this.options.parameters = this.options.parameters.toQueryParams();
    else if (Object.isHash(this.options.parameters))
      this.options.parameters = this.options.parameters.toObject();
  }
});

Ajax.Request = Class.create(Ajax.Base, {
  _complete: false,

  initialize: function($super, url, options) {
    $super(options);
    this.transport = Ajax.getTransport();
    this.request(url);
  },

  request: function(url) {
    this.url = url;
    this.method = this.options.method;
    var params = Object.clone(this.options.parameters);

    if (!['get', 'post'].include(this.method)) {
      // simulate other verbs over post
      params['_method'] = this.method;
      this.method = 'post';
    }

    this.parameters = params;

    if (params = Object.toQueryString(params)) {
      // when GET, append parameters to URL
      if (this.method == 'get')
        this.url += (this.url.include('?') ? '&' : '?') + params;
      else if (/Konqueror|Safari|KHTML/.test(navigator.userAgent))
        params += '&_=';
    }

    try {
      var response = new Ajax.Response(this);
      if (this.options.onCreate) this.options.onCreate(response);
      Ajax.Responders.dispatch('onCreate', this, response);

      this.transport.open(this.method.toUpperCase(), this.url,
        this.options.asynchronous);

      if (this.options.asynchronous) this.respondToReadyState.bind(this).defer(1);

      this.transport.onreadystatechange = this.onStateChange.bind(this);
      this.setRequestHeaders();

      this.body = this.method == 'post' ? (this.options.postBody || params) : null;
      this.transport.send(this.body);

      /* Force Firefox to handle ready state 4 for synchronous requests */
      if (!this.options.asynchronous && this.transport.overrideMimeType)
        this.onStateChange();

    }
    catch (e) {
      this.dispatchException(e);
    }
  },

  onStateChange: function() {
    var readyState = this.transport.readyState;
    if (readyState > 1 && !((readyState == 4) && this._complete))
      this.respondToReadyState(this.transport.readyState);
  },

  setRequestHeaders: function() {
    var headers = {
      'X-Requested-With': 'XMLHttpRequest',
      'X-Prototype-Version': Prototype.Version,
      'Accept': 'text/javascript, text/html, application/xml, text/xml, */*'
    };

    if (this.method == 'post') {
      headers['Content-type'] = this.options.contentType +
        (this.options.encoding ? '; charset=' + this.options.encoding : '');

      /* Force "Connection: close" for older Mozilla browsers to work
       * around a bug where XMLHttpRequest sends an incorrect
       * Content-length header. See Mozilla Bugzilla #246651.
       */
      if (this.transport.overrideMimeType &&
          (navigator.userAgent.match(/Gecko\/(\d{4})/) || [0,2005])[1] < 2005)
            headers['Connection'] = 'close';
    }

    // user-defined headers
    if (typeof this.options.requestHeaders == 'object') {
      var extras = this.options.requestHeaders;

      if (Object.isFunction(extras.push))
        for (var i = 0, length = extras.length; i < length; i += 2)
          headers[extras[i]] = extras[i+1];
      else
        $H(extras).each(function(pair) { headers[pair.key] = pair.value });
    }

    for (var name in headers)
      this.transport.setRequestHeader(name, headers[name]);
  },

  success: function() {
    var status = this.getStatus();
    return !status || (status >= 200 && status < 300);
  },

  getStatus: function() {
    try {
      return this.transport.status || 0;
    } catch (e) { return 0 }
  },

  respondToReadyState: function(readyState) {
    var state = Ajax.Request.Events[readyState], response = new Ajax.Response(this);

    if (state == 'Complete') {
      try {
        this._complete = true;
        (this.options['on' + response.status]
         || this.options['on' + (this.success() ? 'Success' : 'Failure')]
         || Prototype.emptyFunction)(response, response.headerJSON);
      } catch (e) {
        this.dispatchException(e);
      }

      var contentType = response.getHeader('Content-type');
      if (this.options.evalJS == 'force'
          || (this.options.evalJS && this.isSameOrigin() && contentType
          && contentType.match(/^\s*(text|application)\/(x-)?(java|ecma)script(;.*)?\s*$/i)))
        this.evalResponse();
    }

    try {
      (this.options['on' + state] || Prototype.emptyFunction)(response, response.headerJSON);
      Ajax.Responders.dispatch('on' + state, this, response, response.headerJSON);
    } catch (e) {
      this.dispatchException(e);
    }

    if (state == 'Complete') {
      // avoid memory leak in MSIE: clean up
      this.transport.onreadystatechange = Prototype.emptyFunction;
    }
  },

  isSameOrigin: function() {
    var m = this.url.match(/^\s*https?:\/\/[^\/]*/);
    return !m || (m[0] == '#{protocol}//#{domain}#{port}'.interpolate({
      protocol: location.protocol,
      domain: document.domain,
      port: location.port ? ':' + location.port : ''
    }));
  },

  getHeader: function(name) {
    try {
      return this.transport.getResponseHeader(name) || null;
    } catch (e) { return null }
  },

  evalResponse: function() {
    try {
      return eval((this.transport.responseText || '').unfilterJSON());
    } catch (e) {
      this.dispatchException(e);
    }
  },

  dispatchException: function(exception) {
    (this.options.onException || Prototype.emptyFunction)(this, exception);
    Ajax.Responders.dispatch('onException', this, exception);
  }
});

Ajax.Request.Events =
  ['Uninitialized', 'Loading', 'Loaded', 'Interactive', 'Complete'];

Ajax.Response = Class.create({
  initialize: function(request){
    this.request = request;
    var transport  = this.transport  = request.transport,
        readyState = this.readyState = transport.readyState;

    if((readyState > 2 && !Prototype.Browser.IE) || readyState == 4) {
      this.status       = this.getStatus();
      this.statusText   = this.getStatusText();
      this.responseText = String.interpret(transport.responseText);
      this.headerJSON   = this._getHeaderJSON();
    }

    if(readyState == 4) {
      var xml = transport.responseXML;
      this.responseXML  = Object.isUndefined(xml) ? null : xml;
      this.responseJSON = this._getResponseJSON();
    }
  },

  status:      0,
  statusText: '',

  getStatus: Ajax.Request.prototype.getStatus,

  getStatusText: function() {
    try {
      return this.transport.statusText || '';
    } catch (e) { return '' }
  },

  getHeader: Ajax.Request.prototype.getHeader,

  getAllHeaders: function() {
    try {
      return this.getAllResponseHeaders();
    } catch (e) { return null }
  },

  getResponseHeader: function(name) {
    return this.transport.getResponseHeader(name);
  },

  getAllResponseHeaders: function() {
    return this.transport.getAllResponseHeaders();
  },

  _getHeaderJSON: function() {
    var json = this.getHeader('X-JSON');
    if (!json) return null;
    json = decodeURIComponent(escape(json));
    try {
      return json.evalJSON(this.request.options.sanitizeJSON ||
        !this.request.isSameOrigin());
    } catch (e) {
      this.request.dispatchException(e);
    }
  },

  _getResponseJSON: function() {
    var options = this.request.options;
    if (!options.evalJSON || (options.evalJSON != 'force' &&
      !(this.getHeader('Content-type') || '').include('application/json')) ||
        this.responseText.blank())
          return null;
    try {
      return this.responseText.evalJSON(options.sanitizeJSON ||
        !this.request.isSameOrigin());
    } catch (e) {
      this.request.dispatchException(e);
    }
  }
});

Ajax.Updater = Class.create(Ajax.Request, {
  initialize: function($super, container, url, options) {
    this.container = {
      success: (container.success || container),
      failure: (container.failure || (container.success ? null : container))
    };

    options = Object.clone(options);
    var onComplete = options.onComplete;
    options.onComplete = (function(response, json) {
      this.updateContent(response.responseText);
      if (Object.isFunction(onComplete)) onComplete(response, json);
    }).bind(this);

    $super(url, options);
  },

  updateContent: function(responseText) {
    var receiver = this.container[this.success() ? 'success' : 'failure'],
        options = this.options;

    if (!options.evalScripts) responseText = responseText.stripScripts();

    if (receiver = $(receiver)) {
      if (options.insertion) {
        if (Object.isString(options.insertion)) {
          var insertion = { }; insertion[options.insertion] = responseText;
          receiver.insert(insertion);
        }
        else options.insertion(receiver, responseText);
      }
      else receiver.update(responseText);
    }
  }
});

Ajax.PeriodicalUpdater = Class.create(Ajax.Base, {
  initialize: function($super, container, url, options) {
    $super(options);
    this.onComplete = this.options.onComplete;

    this.frequency = (this.options.frequency || 2);
    this.decay = (this.options.decay || 1);

    this.updater = { };
    this.container = container;
    this.url = url;

    this.start();
  },

  start: function() {
    this.options.onComplete = this.updateComplete.bind(this);
    this.onTimerEvent();
  },

  stop: function() {
    this.updater.options.onComplete = undefined;
    clearTimeout(this.timer);
    (this.onComplete || Prototype.emptyFunction).apply(this, arguments);
  },

  updateComplete: function(response) {
    if (this.options.decay) {
      this.decay = (response.responseText == this.lastText ?
        this.decay * this.options.decay : 1);

      this.lastText = response.responseText;
    }
    this.timer = this.onTimerEvent.bind(this).delay(this.decay * this.frequency);
  },

  onTimerEvent: function() {
    this.updater = new Ajax.Updater(this.container, this.url, this.options);
  }
});
function $(element) {
  if (arguments.length > 1) {
    for (var i = 0, elements = [], length = arguments.length; i < length; i++)
      elements.push($(arguments[i]));
    return elements;
  }
  if (Object.isString(element))
    element = document.getElementById(element);
  return Element.extend(element);
}

if (Prototype.BrowserFeatures.XPath) {
  document._getElementsByXPath = function(expression, parentElement) {
    var results = [];
    var query = document.evaluate(expression, $(parentElement) || document,
      null, XPathResult.ORDERED_NODE_SNAPSHOT_TYPE, null);
    for (var i = 0, length = query.snapshotLength; i < length; i++)
      results.push(Element.extend(query.snapshotItem(i)));
    return results;
  };
}

/*--------------------------------------------------------------------------*/

if (!window.Node) var Node = { };

if (!Node.ELEMENT_NODE) {
  // DOM level 2 ECMAScript Language Binding
  Object.extend(Node, {
    ELEMENT_NODE: 1,
    ATTRIBUTE_NODE: 2,
    TEXT_NODE: 3,
    CDATA_SECTION_NODE: 4,
    ENTITY_REFERENCE_NODE: 5,
    ENTITY_NODE: 6,
    PROCESSING_INSTRUCTION_NODE: 7,
    COMMENT_NODE: 8,
    DOCUMENT_NODE: 9,
    DOCUMENT_TYPE_NODE: 10,
    DOCUMENT_FRAGMENT_NODE: 11,
    NOTATION_NODE: 12
  });
}

(function() {
  var element = this.Element;
  this.Element = function(tagName, attributes) {
    attributes = attributes || { };
    tagName = tagName.toLowerCase();
    var cache = Element.cache;
    if (Prototype.Browser.IE && attributes.name) {
      tagName = '<' + tagName + ' name="' + attributes.name + '">';
      delete attributes.name;
      return Element.writeAttribute(document.createElement(tagName), attributes);
    }
    if (!cache[tagName]) cache[tagName] = Element.extend(document.createElement(tagName));
    return Element.writeAttribute(cache[tagName].cloneNode(false), attributes);
  };
  Object.extend(this.Element, element || { });
  if (element) this.Element.prototype = element.prototype;
}).call(window);

Element.cache = { };

Element.Methods = {
  visible: function(element) {
    return $(element).style.display != 'none';
  },

  toggle: function(element) {
    element = $(element);
    Element[Element.visible(element) ? 'hide' : 'show'](element);
    return element;
  },

  hide: function(element) {
    element = $(element);
    element.style.display = 'none';
    return element;
  },

  show: function(element) {
    element = $(element);
    element.style.display = '';
    return element;
  },

  remove: function(element) {
    element = $(element);
    element.parentNode.removeChild(element);
    return element;
  },

  update: function(element, content) {
    element = $(element);
    if (content && content.toElement) content = content.toElement();
    if (Object.isElement(content)) return element.update().insert(content);
    content = Object.toHTML(content);
    element.innerHTML = content.stripScripts();
    content.evalScripts.bind(content).defer();
    return element;
  },

  replace: function(element, content) {
    element = $(element);
    if (content && content.toElement) content = content.toElement();
    else if (!Object.isElement(content)) {
      content = Object.toHTML(content);
      var range = element.ownerDocument.createRange();
      range.selectNode(element);
      content.evalScripts.bind(content).defer();
      content = range.createContextualFragment(content.stripScripts());
    }
    element.parentNode.replaceChild(content, element);
    return element;
  },

  insert: function(element, insertions) {
    element = $(element);

    if (Object.isString(insertions) || Object.isNumber(insertions) ||
        Object.isElement(insertions) || (insertions && (insertions.toElement || insertions.toHTML)))
          insertions = {bottom:insertions};

    var content, insert, tagName, childNodes;

    for (var position in insertions) {
      content  = insertions[position];
      position = position.toLowerCase();
      insert = Element._insertionTranslations[position];

      if (content && content.toElement) content = content.toElement();
      if (Object.isElement(content)) {
        insert(element, content);
        continue;
      }

      content = Object.toHTML(content);

      tagName = ((position == 'before' || position == 'after')
        ? element.parentNode : element).tagName.toUpperCase();

      childNodes = Element._getContentFromAnonymousElement(tagName, content.stripScripts());

      if (position == 'top' || position == 'after') childNodes.reverse();
      childNodes.each(insert.curry(element));

      content.evalScripts.bind(content).defer();
    }

    return element;
  },

  wrap: function(element, wrapper, attributes) {
    element = $(element);
    if (Object.isElement(wrapper))
      $(wrapper).writeAttribute(attributes || { });
    else if (Object.isString(wrapper)) wrapper = new Element(wrapper, attributes);
    else wrapper = new Element('div', wrapper);
    if (element.parentNode)
      element.parentNode.replaceChild(wrapper, element);
    wrapper.appendChild(element);
    return wrapper;
  },

  inspect: function(element) {
    element = $(element);
    var result = '<' + element.tagName.toLowerCase();
    $H({'id': 'id', 'className': 'class'}).each(function(pair) {
      var property = pair.first(), attribute = pair.last();
      var value = (element[property] || '').toString();
      if (value) result += ' ' + attribute + '=' + value.inspect(true);
    });
    return result + '>';
  },

  recursivelyCollect: function(element, property) {
    element = $(element);
    var elements = [];
    while (element = element[property])
      if (element.nodeType == 1)
        elements.push(Element.extend(element));
    return elements;
  },

  ancestors: function(element) {
    return $(element).recursivelyCollect('parentNode');
  },

  descendants: function(element) {
    return $(element).select("*");
  },

  firstDescendant: function(element) {
    element = $(element).firstChild;
    while (element && element.nodeType != 1) element = element.nextSibling;
    return $(element);
  },

  immediateDescendants: function(element) {
    if (!(element = $(element).firstChild)) return [];
    while (element && element.nodeType != 1) element = element.nextSibling;
    if (element) return [element].concat($(element).nextSiblings());
    return [];
  },

  previousSiblings: function(element) {
    return $(element).recursivelyCollect('previousSibling');
  },

  nextSiblings: function(element) {
    return $(element).recursivelyCollect('nextSibling');
  },

  siblings: function(element) {
    element = $(element);
    return element.previousSiblings().reverse().concat(element.nextSiblings());
  },

  match: function(element, selector) {
    if (Object.isString(selector))
      selector = new Selector(selector);
    return selector.match($(element));
  },

  up: function(element, expression, index) {
    element = $(element);
    if (arguments.length == 1) return $(element.parentNode);
    var ancestors = element.ancestors();
    return Object.isNumber(expression) ? ancestors[expression] :
      Selector.findElement(ancestors, expression, index);
  },

  down: function(element, expression, index) {
    element = $(element);
    if (arguments.length == 1) return element.firstDescendant();
    return Object.isNumber(expression) ? element.descendants()[expression] :
      Element.select(element, expression)[index || 0];
  },

  previous: function(element, expression, index) {
    element = $(element);
    if (arguments.length == 1) return $(Selector.handlers.previousElementSibling(element));
    var previousSiblings = element.previousSiblings();
    return Object.isNumber(expression) ? previousSiblings[expression] :
      Selector.findElement(previousSiblings, expression, index);
  },

  next: function(element, expression, index) {
    element = $(element);
    if (arguments.length == 1) return $(Selector.handlers.nextElementSibling(element));
    var nextSiblings = element.nextSiblings();
    return Object.isNumber(expression) ? nextSiblings[expression] :
      Selector.findElement(nextSiblings, expression, index);
  },

  select: function() {
    var args = $A(arguments), element = $(args.shift());
    return Selector.findChildElements(element, args);
  },

  adjacent: function() {
    var args = $A(arguments), element = $(args.shift());
    return Selector.findChildElements(element.parentNode, args).without(element);
  },

  identify: function(element) {
    element = $(element);
    var id = element.readAttribute('id'), self = arguments.callee;
    if (id) return id;
    do { id = 'anonymous_element_' + self.counter++ } while ($(id));
    element.writeAttribute('id', id);
    return id;
  },

  readAttribute: function(element, name) {
    element = $(element);
    if (Prototype.Browser.IE) {
      var t = Element._attributeTranslations.read;
      if (t.values[name]) return t.values[name](element, name);
      if (t.names[name]) name = t.names[name];
      if (name.include(':')) {
        return (!element.attributes || !element.attributes[name]) ? null :
         element.attributes[name].value;
      }
    }
    return element.getAttribute(name);
  },

  writeAttribute: function(element, name, value) {
    element = $(element);
    var attributes = { }, t = Element._attributeTranslations.write;

    if (typeof name == 'object') attributes = name;
    else attributes[name] = Object.isUndefined(value) ? true : value;

    for (var attr in attributes) {
      name = t.names[attr] || attr;
      value = attributes[attr];
      if (t.values[attr]) name = t.values[attr](element, value);
      if (value === false || value === null)
        element.removeAttribute(name);
      else if (value === true)
        element.setAttribute(name, name);
      else element.setAttribute(name, value);
    }
    return element;
  },

  getHeight: function(element) {
    return $(element).getDimensions().height;
  },

  getWidth: function(element) {
    return $(element).getDimensions().width;
  },

  classNames: function(element) {
    return new Element.ClassNames(element);
  },

  hasClassName: function(element, className) {
    if (!(element = $(element))) return;
    var elementClassName = element.className;
    return (elementClassName.length > 0 && (elementClassName == className ||
      new RegExp("(^|\\s)" + className + "(\\s|$)").test(elementClassName)));
  },

  addClassName: function(element, className) {
    if (!(element = $(element))) return;
    if (!element.hasClassName(className))
      element.className += (element.className ? ' ' : '') + className;
    return element;
  },

  removeClassName: function(element, className) {
    if (!(element = $(element))) return;
    element.className = element.className.replace(
      new RegExp("(^|\\s+)" + className + "(\\s+|$)"), ' ').strip();
    return element;
  },

  toggleClassName: function(element, className) {
    if (!(element = $(element))) return;
    return element[element.hasClassName(className) ?
      'removeClassName' : 'addClassName'](className);
  },

  // removes whitespace-only text node children
  cleanWhitespace: function(element) {
    element = $(element);
    var node = element.firstChild;
    while (node) {
      var nextNode = node.nextSibling;
      if (node.nodeType == 3 && !/\S/.test(node.nodeValue))
        element.removeChild(node);
      node = nextNode;
    }
    return element;
  },

  empty: function(element) {
    return $(element).innerHTML.blank();
  },

  descendantOf: function(element, ancestor) {
    element = $(element), ancestor = $(ancestor);

    if (element.compareDocumentPosition)
      return (element.compareDocumentPosition(ancestor) & 8) === 8;

    if (ancestor.contains)
      return ancestor.contains(element) && ancestor !== element;

    while (element = element.parentNode)
      if (element == ancestor) return true;

    return false;
  },

  scrollTo: function(element) {
    element = $(element);
    var pos = element.cumulativeOffset();
    window.scrollTo(pos[0], pos[1]);
    return element;
  },

  getStyle: function(element, style) {
    element = $(element);
    style = style == 'float' ? 'cssFloat' : style.camelize();
    var value = element.style[style];
    if (!value || value == 'auto') {
      var css = document.defaultView.getComputedStyle(element, null);
      value = css ? css[style] : null;
    }
    if (style == 'opacity') return value ? parseFloat(value) : 1.0;
    return value == 'auto' ? null : value;
  },

  getOpacity: function(element) {
    return $(element).getStyle('opacity');
  },

  setStyle: function(element, styles) {
    element = $(element);
    var elementStyle = element.style, match;
    if (Object.isString(styles)) {
      element.style.cssText += ';' + styles;
      return styles.include('opacity') ?
        element.setOpacity(styles.match(/opacity:\s*(\d?\.?\d*)/)[1]) : element;
    }
    for (var property in styles)
      if (property == 'opacity') element.setOpacity(styles[property]);
      else
        elementStyle[(property == 'float' || property == 'cssFloat') ?
          (Object.isUndefined(elementStyle.styleFloat) ? 'cssFloat' : 'styleFloat') :
            property] = styles[property];

    return element;
  },

  setOpacity: function(element, value) {
    element = $(element);
    element.style.opacity = (value == 1 || value === '') ? '' :
      (value < 0.00001) ? 0 : value;
    return element;
  },

  getDimensions: function(element) {
    element = $(element);
    var display = element.getStyle('display');
    if (display != 'none' && display != null) // Safari bug
      return {width: element.offsetWidth, height: element.offsetHeight};

    // All *Width and *Height properties give 0 on elements with display none,
    // so enable the element temporarily
    var els = element.style;
    var originalVisibility = els.visibility;
    var originalPosition = els.position;
    var originalDisplay = els.display;
    els.visibility = 'hidden';
    els.position = 'absolute';
    els.display = 'block';
    var originalWidth = element.clientWidth;
    var originalHeight = element.clientHeight;
    els.display = originalDisplay;
    els.position = originalPosition;
    els.visibility = originalVisibility;
    return {width: originalWidth, height: originalHeight};
  },

  makePositioned: function(element) {
    element = $(element);
    var pos = Element.getStyle(element, 'position');
    if (pos == 'static' || !pos) {
      element._madePositioned = true;
      element.style.position = 'relative';
      // Opera returns the offset relative to the positioning context, when an
      // element is position relative but top and left have not been defined
      if (Prototype.Browser.Opera) {
        element.style.top = 0;
        element.style.left = 0;
      }
    }
    return element;
  },

  undoPositioned: function(element) {
    element = $(element);
    if (element._madePositioned) {
      element._madePositioned = undefined;
      element.style.position =
        element.style.top =
        element.style.left =
        element.style.bottom =
        element.style.right = '';
    }
    return element;
  },

  makeClipping: function(element) {
    element = $(element);
    if (element._overflow) return element;
    element._overflow = Element.getStyle(element, 'overflow') || 'auto';
    if (element._overflow !== 'hidden')
      element.style.overflow = 'hidden';
    return element;
  },

  undoClipping: function(element) {
    element = $(element);
    if (!element._overflow) return element;
    element.style.overflow = element._overflow == 'auto' ? '' : element._overflow;
    element._overflow = null;
    return element;
  },

  cumulativeOffset: function(element) {
    var valueT = 0, valueL = 0;
    do {
      valueT += element.offsetTop  || 0;
      valueL += element.offsetLeft || 0;
      element = element.offsetParent;
    } while (element);
    return Element._returnOffset(valueL, valueT);
  },

  positionedOffset: function(element) {
    var valueT = 0, valueL = 0;
    do {
      valueT += element.offsetTop  || 0;
      valueL += element.offsetLeft || 0;
      element = element.offsetParent;
      if (element) {
        if (element.tagName.toUpperCase() == 'BODY') break;
        var p = Element.getStyle(element, 'position');
        if (p !== 'static') break;
      }
    } while (element);
    return Element._returnOffset(valueL, valueT);
  },

  absolutize: function(element) {
    element = $(element);
    if (element.getStyle('position') == 'absolute') return element;
    // Position.prepare(); // To be done manually by Scripty when it needs it.

    var offsets = element.positionedOffset();
    var top     = offsets[1];
    var left    = offsets[0];
    var width   = element.clientWidth;
    var height  = element.clientHeight;

    element._originalLeft   = left - parseFloat(element.style.left  || 0);
    element._originalTop    = top  - parseFloat(element.style.top || 0);
    element._originalWidth  = element.style.width;
    element._originalHeight = element.style.height;

    element.style.position = 'absolute';
    element.style.top    = top + 'px';
    element.style.left   = left + 'px';
    element.style.width  = width + 'px';
    element.style.height = height + 'px';
    return element;
  },

  relativize: function(element) {
    element = $(element);
    if (element.getStyle('position') == 'relative') return element;
    // Position.prepare(); // To be done manually by Scripty when it needs it.

    element.style.position = 'relative';
    var top  = parseFloat(element.style.top  || 0) - (element._originalTop || 0);
    var left = parseFloat(element.style.left || 0) - (element._originalLeft || 0);

    element.style.top    = top + 'px';
    element.style.left   = left + 'px';
    element.style.height = element._originalHeight;
    element.style.width  = element._originalWidth;
    return element;
  },

  cumulativeScrollOffset: function(element) {
    var valueT = 0, valueL = 0;
    do {
      valueT += element.scrollTop  || 0;
      valueL += element.scrollLeft || 0;
      element = element.parentNode;
    } while (element);
    return Element._returnOffset(valueL, valueT);
  },

  getOffsetParent: function(element) {
    if (element.offsetParent) return $(element.offsetParent);
    if (element == document.body) return $(element);

    while ((element = element.parentNode) && element != document.body)
      if (Element.getStyle(element, 'position') != 'static')
        return $(element);

    return $(document.body);
  },

  viewportOffset: function(forElement) {
    var valueT = 0, valueL = 0;

    var element = forElement;
    do {
      valueT += element.offsetTop  || 0;
      valueL += element.offsetLeft || 0;

      // Safari fix
      if (element.offsetParent == document.body &&
        Element.getStyle(element, 'position') == 'absolute') break;

    } while (element = element.offsetParent);

    element = forElement;
    do {
      if (!Prototype.Browser.Opera || (element.tagName && (element.tagName.toUpperCase() == 'HTML'))) {
        valueT -= element.scrollTop  || 0;
        valueL -= element.scrollLeft || 0;
      }
    } while (element = element.parentNode);

    return Element._returnOffset(valueL, valueT);
  },

  clonePosition: function(element, source) {
    var options = Object.extend({
      setLeft:    true,
      setTop:     true,
      setWidth:   true,
      setHeight:  true,
      offsetTop:  0,
      offsetLeft: 0
    }, arguments[2] || { });

    // find page position of source
    source = $(source);
    var p = source.viewportOffset();

    // find coordinate system to use
    element = $(element);
    var delta = [0, 0];
    var parent = null;
    // delta [0,0] will do fine with position: fixed elements,
    // position:absolute needs offsetParent deltas
    if (Element.getStyle(element, 'position') == 'absolute') {
      parent = element.getOffsetParent();
      delta = parent.viewportOffset();
    }

    // correct by body offsets (fixes Safari)
    if (parent == document.body) {
      delta[0] -= document.body.offsetLeft;
      delta[1] -= document.body.offsetTop;
    }

    // set position
    if (options.setLeft)   element.style.left  = (p[0] - delta[0] + options.offsetLeft) + 'px';
    if (options.setTop)    element.style.top   = (p[1] - delta[1] + options.offsetTop) + 'px';
    if (options.setWidth)  element.style.width = source.offsetWidth + 'px';
    if (options.setHeight) element.style.height = source.offsetHeight + 'px';
    return element;
  }
};

Element.Methods.identify.counter = 1;

Object.extend(Element.Methods, {
  getElementsBySelector: Element.Methods.select,
  childElements: Element.Methods.immediateDescendants
});

Element._attributeTranslations = {
  write: {
    names: {
      className: 'class',
      htmlFor:   'for'
    },
    values: { }
  }
};

if (Prototype.Browser.Opera) {
  Element.Methods.getStyle = Element.Methods.getStyle.wrap(
    function(proceed, element, style) {
      switch (style) {
        case 'left': case 'top': case 'right': case 'bottom':
          if (proceed(element, 'position') === 'static') return null;
        case 'height': case 'width':
          // returns '0px' for hidden elements; we want it to return null
          if (!Element.visible(element)) return null;

          // returns the border-box dimensions rather than the content-box
          // dimensions, so we subtract padding and borders from the value
          var dim = parseInt(proceed(element, style), 10);

          if (dim !== element['offset' + style.capitalize()])
            return dim + 'px';

          var properties;
          if (style === 'height') {
            properties = ['border-top-width', 'padding-top',
             'padding-bottom', 'border-bottom-width'];
          }
          else {
            properties = ['border-left-width', 'padding-left',
             'padding-right', 'border-right-width'];
          }
          return properties.inject(dim, function(memo, property) {
            var val = proceed(element, property);
            return val === null ? memo : memo - parseInt(val, 10);
          }) + 'px';
        default: return proceed(element, style);
      }
    }
  );

  Element.Methods.readAttribute = Element.Methods.readAttribute.wrap(
    function(proceed, element, attribute) {
      if (attribute === 'title') return element.title;
      return proceed(element, attribute);
    }
  );
}

else if (Prototype.Browser.IE) {
  // IE doesn't report offsets correctly for static elements, so we change them
  // to "relative" to get the values, then change them back.
  Element.Methods.getOffsetParent = Element.Methods.getOffsetParent.wrap(
    function(proceed, element) {
      element = $(element);
      // IE throws an error if element is not in document
      try { element.offsetParent }
      catch(e) { return $(document.body) }
      var position = element.getStyle('position');
      if (position !== 'static') return proceed(element);
      element.setStyle({ position: 'relative' });
      var value = proceed(element);
      element.setStyle({ position: position });
      return value;
    }
  );

  $w('positionedOffset viewportOffset').each(function(method) {
    Element.Methods[method] = Element.Methods[method].wrap(
      function(proceed, element) {
        element = $(element);
        try { element.offsetParent }
        catch(e) { return Element._returnOffset(0,0) }
        var position = element.getStyle('position');
        if (position !== 'static') return proceed(element);
        // Trigger hasLayout on the offset parent so that IE6 reports
        // accurate offsetTop and offsetLeft values for position: fixed.
        var offsetParent = element.getOffsetParent();
        if (offsetParent && offsetParent.getStyle('position') === 'fixed')
          offsetParent.setStyle({ zoom: 1 });
        element.setStyle({ position: 'relative' });
        var value = proceed(element);
        element.setStyle({ position: position });
        return value;
      }
    );
  });

  Element.Methods.cumulativeOffset = Element.Methods.cumulativeOffset.wrap(
    function(proceed, element) {
      try { element.offsetParent }
      catch(e) { return Element._returnOffset(0,0) }
      return proceed(element);
    }
  );

  Element.Methods.getStyle = function(element, style) {
    element = $(element);
    style = (style == 'float' || style == 'cssFloat') ? 'styleFloat' : style.camelize();
    var value = element.style[style];
    if (!value && element.currentStyle) value = element.currentStyle[style];

    if (style == 'opacity') {
      if (value = (element.getStyle('filter') || '').match(/alpha\(opacity=(.*)\)/))
        if (value[1]) return parseFloat(value[1]) / 100;
      return 1.0;
    }

    if (value == 'auto') {
      if ((style == 'width' || style == 'height') && (element.getStyle('display') != 'none'))
        return element['offset' + style.capitalize()] + 'px';
      return null;
    }
    return value;
  };

  Element.Methods.setOpacity = function(element, value) {
    function stripAlpha(filter){
      return filter.replace(/alpha\([^\)]*\)/gi,'');
    }
    element = $(element);
    var currentStyle = element.currentStyle;
    if ((currentStyle && !currentStyle.hasLayout) ||
      (!currentStyle && element.style.zoom == 'normal'))
        element.style.zoom = 1;

    var filter = element.getStyle('filter'), style = element.style;
    if (value == 1 || value === '') {
      (filter = stripAlpha(filter)) ?
        style.filter = filter : style.removeAttribute('filter');
      return element;
    } else if (value < 0.00001) value = 0;
    style.filter = stripAlpha(filter) +
      'alpha(opacity=' + (value * 100) + ')';
    return element;
  };

  Element._attributeTranslations = {
    read: {
      names: {
        'class': 'className',
        'for':   'htmlFor'
      },
      values: {
        _getAttr: function(element, attribute) {
          return element.getAttribute(attribute, 2);
        },
        _getAttrNode: function(element, attribute) {
          var node = element.getAttributeNode(attribute);
          return node ? node.value : "";
        },
        _getEv: function(element, attribute) {
          attribute = element.getAttribute(attribute);
          return attribute ? attribute.toString().slice(23, -2) : null;
        },
        _flag: function(element, attribute) {
          return $(element).hasAttribute(attribute) ? attribute : null;
        },
        style: function(element) {
          return element.style.cssText.toLowerCase();
        },
        title: function(element) {
          return element.title;
        }
      }
    }
  };

  Element._attributeTranslations.write = {
    names: Object.extend({
      cellpadding: 'cellPadding',
      cellspacing: 'cellSpacing'
    }, Element._attributeTranslations.read.names),
    values: {
      checked: function(element, value) {
        element.checked = !!value;
      },

      style: function(element, value) {
        element.style.cssText = value ? value : '';
      }
    }
  };

  Element._attributeTranslations.has = {};

  $w('colSpan rowSpan vAlign dateTime accessKey tabIndex ' +
      'encType maxLength readOnly longDesc frameBorder').each(function(attr) {
    Element._attributeTranslations.write.names[attr.toLowerCase()] = attr;
    Element._attributeTranslations.has[attr.toLowerCase()] = attr;
  });

  (function(v) {
    Object.extend(v, {
      href:        v._getAttr,
      src:         v._getAttr,
      type:        v._getAttr,
      action:      v._getAttrNode,
      disabled:    v._flag,
      checked:     v._flag,
      readonly:    v._flag,
      multiple:    v._flag,
      onload:      v._getEv,
      onunload:    v._getEv,
      onclick:     v._getEv,
      ondblclick:  v._getEv,
      onmousedown: v._getEv,
      onmouseup:   v._getEv,
      onmouseover: v._getEv,
      onmousemove: v._getEv,
      onmouseout:  v._getEv,
      onfocus:     v._getEv,
      onblur:      v._getEv,
      onkeypress:  v._getEv,
      onkeydown:   v._getEv,
      onkeyup:     v._getEv,
      onsubmit:    v._getEv,
      onreset:     v._getEv,
      onselect:    v._getEv,
      onchange:    v._getEv
    });
  })(Element._attributeTranslations.read.values);
}

else if (Prototype.Browser.Gecko && /rv:1\.8\.0/.test(navigator.userAgent)) {
  Element.Methods.setOpacity = function(element, value) {
    element = $(element);
    element.style.opacity = (value == 1) ? 0.999999 :
      (value === '') ? '' : (value < 0.00001) ? 0 : value;
    return element;
  };
}

else if (Prototype.Browser.WebKit) {
  Element.Methods.setOpacity = function(element, value) {
    element = $(element);
    element.style.opacity = (value == 1 || value === '') ? '' :
      (value < 0.00001) ? 0 : value;

    if (value == 1)
      if(element.tagName.toUpperCase() == 'IMG' && element.width) {
        element.width++; element.width--;
      } else try {
        var n = document.createTextNode(' ');
        element.appendChild(n);
        element.removeChild(n);
      } catch (e) { }

    return element;
  };

  // Safari returns margins on body which is incorrect if the child is absolutely
  // positioned.  For performance reasons, redefine Element#cumulativeOffset for
  // KHTML/WebKit only.
  Element.Methods.cumulativeOffset = function(element) {
    var valueT = 0, valueL = 0;
    do {
      valueT += element.offsetTop  || 0;
      valueL += element.offsetLeft || 0;
      if (element.offsetParent == document.body)
        if (Element.getStyle(element, 'position') == 'absolute') break;

      element = element.offsetParent;
    } while (element);

    return Element._returnOffset(valueL, valueT);
  };
}

if (Prototype.Browser.IE || Prototype.Browser.Opera) {
  // IE and Opera are missing .innerHTML support for TABLE-related and SELECT elements
  Element.Methods.update = function(element, content) {
    element = $(element);

    if (content && content.toElement) content = content.toElement();
    if (Object.isElement(content)) return element.update().insert(content);

    content = Object.toHTML(content);
    var tagName = element.tagName.toUpperCase();

    if (tagName in Element._insertionTranslations.tags) {
      $A(element.childNodes).each(function(node) { element.removeChild(node) });
      Element._getContentFromAnonymousElement(tagName, content.stripScripts())
        .each(function(node) { element.appendChild(node) });
    }
    else element.innerHTML = content.stripScripts();

    content.evalScripts.bind(content).defer();
    return element;
  };
}

if ('outerHTML' in document.createElement('div')) {
  Element.Methods.replace = function(element, content) {
    element = $(element);

    if (content && content.toElement) content = content.toElement();
    if (Object.isElement(content)) {
      element.parentNode.replaceChild(content, element);
      return element;
    }

    content = Object.toHTML(content);
    var parent = element.parentNode, tagName = parent.tagName.toUpperCase();

    if (Element._insertionTranslations.tags[tagName]) {
      var nextSibling = element.next();
      var fragments = Element._getContentFromAnonymousElement(tagName, content.stripScripts());
      parent.removeChild(element);
      if (nextSibling)
        fragments.each(function(node) { parent.insertBefore(node, nextSibling) });
      else
        fragments.each(function(node) { parent.appendChild(node) });
    }
    else element.outerHTML = content.stripScripts();

    content.evalScripts.bind(content).defer();
    return element;
  };
}

Element._returnOffset = function(l, t) {
  var result = [l, t];
  result.left = l;
  result.top = t;
  return result;
};

Element._getContentFromAnonymousElement = function(tagName, html) {
  var div = new Element('div'), t = Element._insertionTranslations.tags[tagName];
  if (t) {
    div.innerHTML = t[0] + html + t[1];
    t[2].times(function() { div = div.firstChild });
  } else div.innerHTML = html;
  return $A(div.childNodes);
};

Element._insertionTranslations = {
  before: function(element, node) {
    element.parentNode.insertBefore(node, element);
  },
  top: function(element, node) {
    element.insertBefore(node, element.firstChild);
  },
  bottom: function(element, node) {
    element.appendChild(node);
  },
  after: function(element, node) {
    element.parentNode.insertBefore(node, element.nextSibling);
  },
  tags: {
    TABLE:  ['<table>',                '</table>',                   1],
    TBODY:  ['<table><tbody>',         '</tbody></table>',           2],
    TR:     ['<table><tbody><tr>',     '</tr></tbody></table>',      3],
    TD:     ['<table><tbody><tr><td>', '</td></tr></tbody></table>', 4],
    SELECT: ['<select>',               '</select>',                  1]
  }
};

(function() {
  Object.extend(this.tags, {
    THEAD: this.tags.TBODY,
    TFOOT: this.tags.TBODY,
    TH:    this.tags.TD
  });
}).call(Element._insertionTranslations);

Element.Methods.Simulated = {
  hasAttribute: function(element, attribute) {
    attribute = Element._attributeTranslations.has[attribute] || attribute;
    var node = $(element).getAttributeNode(attribute);
    return !!(node && node.specified);
  }
};

Element.Methods.ByTag = { };

Object.extend(Element, Element.Methods);

if (!Prototype.BrowserFeatures.ElementExtensions &&
    document.createElement('div')['__proto__']) {
  window.HTMLElement = { };
  window.HTMLElement.prototype = document.createElement('div')['__proto__'];
  Prototype.BrowserFeatures.ElementExtensions = true;
}

Element.extend = (function() {
  if (Prototype.BrowserFeatures.SpecificElementExtensions)
    return Prototype.K;

  var Methods = { }, ByTag = Element.Methods.ByTag;

  var extend = Object.extend(function(element) {
    if (!element || element._extendedByPrototype ||
        element.nodeType != 1 || element == window) return element;

    var methods = Object.clone(Methods),
      tagName = element.tagName.toUpperCase(), property, value;

    // extend methods for specific tags
    if (ByTag[tagName]) Object.extend(methods, ByTag[tagName]);

    for (property in methods) {
      value = methods[property];
      if (Object.isFunction(value) && !(property in element))
        element[property] = value.methodize();
    }

    element._extendedByPrototype = Prototype.emptyFunction;
    return element;

  }, {
    refresh: function() {
      // extend methods for all tags (Safari doesn't need this)
      if (!Prototype.BrowserFeatures.ElementExtensions) {
        Object.extend(Methods, Element.Methods);
        Object.extend(Methods, Element.Methods.Simulated);
      }
    }
  });

  extend.refresh();
  return extend;
})();

Element.hasAttribute = function(element, attribute) {
  if (element.hasAttribute) return element.hasAttribute(attribute);
  return Element.Methods.Simulated.hasAttribute(element, attribute);
};

Element.addMethods = function(methods) {
  var F = Prototype.BrowserFeatures, T = Element.Methods.ByTag;

  if (!methods) {
    Object.extend(Form, Form.Methods);
    Object.extend(Form.Element, Form.Element.Methods);
    Object.extend(Element.Methods.ByTag, {
      "FORM":     Object.clone(Form.Methods),
      "INPUT":    Object.clone(Form.Element.Methods),
      "SELECT":   Object.clone(Form.Element.Methods),
      "TEXTAREA": Object.clone(Form.Element.Methods)
    });
  }

  if (arguments.length == 2) {
    var tagName = methods;
    methods = arguments[1];
  }

  if (!tagName) Object.extend(Element.Methods, methods || { });
  else {
    if (Object.isArray(tagName)) tagName.each(extend);
    else extend(tagName);
  }

  function extend(tagName) {
    tagName = tagName.toUpperCase();
    if (!Element.Methods.ByTag[tagName])
      Element.Methods.ByTag[tagName] = { };
    Object.extend(Element.Methods.ByTag[tagName], methods);
  }

  function copy(methods, destination, onlyIfAbsent) {
    onlyIfAbsent = onlyIfAbsent || false;
    for (var property in methods) {
      var value = methods[property];
      if (!Object.isFunction(value)) continue;
      if (!onlyIfAbsent || !(property in destination))
        destination[property] = value.methodize();
    }
  }

  function findDOMClass(tagName) {
    var klass;
    var trans = {
      "OPTGROUP": "OptGroup", "TEXTAREA": "TextArea", "P": "Paragraph",
      "FIELDSET": "FieldSet", "UL": "UList", "OL": "OList", "DL": "DList",
      "DIR": "Directory", "H1": "Heading", "H2": "Heading", "H3": "Heading",
      "H4": "Heading", "H5": "Heading", "H6": "Heading", "Q": "Quote",
      "INS": "Mod", "DEL": "Mod", "A": "Anchor", "IMG": "Image", "CAPTION":
      "TableCaption", "COL": "TableCol", "COLGROUP": "TableCol", "THEAD":
      "TableSection", "TFOOT": "TableSection", "TBODY": "TableSection", "TR":
      "TableRow", "TH": "TableCell", "TD": "TableCell", "FRAMESET":
      "FrameSet", "IFRAME": "IFrame"
    };
    if (trans[tagName]) klass = 'HTML' + trans[tagName] + 'Element';
    if (window[klass]) return window[klass];
    klass = 'HTML' + tagName + 'Element';
    if (window[klass]) return window[klass];
    klass = 'HTML' + tagName.capitalize() + 'Element';
    if (window[klass]) return window[klass];

    window[klass] = { };
    window[klass].prototype = document.createElement(tagName)['__proto__'];
    return window[klass];
  }

  if (F.ElementExtensions) {
    copy(Element.Methods, HTMLElement.prototype);
    copy(Element.Methods.Simulated, HTMLElement.prototype, true);
  }

  if (F.SpecificElementExtensions) {
    for (var tag in Element.Methods.ByTag) {
      var klass = findDOMClass(tag);
      if (Object.isUndefined(klass)) continue;
      copy(T[tag], klass.prototype);
    }
  }

  Object.extend(Element, Element.Methods);
  delete Element.ByTag;

  if (Element.extend.refresh) Element.extend.refresh();
  Element.cache = { };
};

document.viewport = {
  getDimensions: function() {
    var dimensions = { }, B = Prototype.Browser;
    $w('width height').each(function(d) {
      var D = d.capitalize();
      if (B.WebKit && !document.evaluate) {
        // Safari <3.0 needs self.innerWidth/Height
        dimensions[d] = self['inner' + D];
      } else if (B.Opera && parseFloat(window.opera.version()) < 9.5) {
        // Opera <9.5 needs document.body.clientWidth/Height
        dimensions[d] = document.body['client' + D]
      } else {
        dimensions[d] = document.documentElement['client' + D];
      }
    });
    return dimensions;
  },

  getWidth: function() {
    return this.getDimensions().width;
  },

  getHeight: function() {
    return this.getDimensions().height;
  },

  getScrollOffsets: function() {
    return Element._returnOffset(
      window.pageXOffset || document.documentElement.scrollLeft || document.body.scrollLeft,
      window.pageYOffset || document.documentElement.scrollTop || document.body.scrollTop);
  }
};
/* Portions of the Selector class are derived from Jack Slocum's DomQuery,
 * part of YUI-Ext version 0.40, distributed under the terms of an MIT-style
 * license.  Please see http://www.yui-ext.com/ for more information. */

var Selector = Class.create({
  initialize: function(expression) {
    this.expression = expression.strip();

    if (this.shouldUseSelectorsAPI()) {
      this.mode = 'selectorsAPI';
    } else if (this.shouldUseXPath()) {
      this.mode = 'xpath';
      this.compileXPathMatcher();
    } else {
      this.mode = "normal";
      this.compileMatcher();
    }

  },

  shouldUseXPath: function() {
    if (!Prototype.BrowserFeatures.XPath) return false;

    var e = this.expression;

    // Safari 3 chokes on :*-of-type and :empty
    if (Prototype.Browser.WebKit &&
     (e.include("-of-type") || e.include(":empty")))
      return false;

    // XPath can't do namespaced attributes, nor can it read
    // the "checked" property from DOM nodes
    if ((/(\[[\w-]*?:|:checked)/).test(e))
      return false;

    return true;
  },

  shouldUseSelectorsAPI: function() {
    if (!Prototype.BrowserFeatures.SelectorsAPI) return false;

    if (!Selector._div) Selector._div = new Element('div');

    // Make sure the browser treats the selector as valid. Test on an
    // isolated element to minimize cost of this check.
    try {
      Selector._div.querySelector(this.expression);
    } catch(e) {
      return false;
    }

    return true;
  },

  compileMatcher: function() {
    var e = this.expression, ps = Selector.patterns, h = Selector.handlers,
        c = Selector.criteria, le, p, m;

    if (Selector._cache[e]) {
      this.matcher = Selector._cache[e];
      return;
    }

    this.matcher = ["this.matcher = function(root) {",
                    "var r = root, h = Selector.handlers, c = false, n;"];

    while (e && le != e && (/\S/).test(e)) {
      le = e;
      for (var i in ps) {
        p = ps[i];
        if (m = e.match(p)) {
          this.matcher.push(Object.isFunction(c[i]) ? c[i](m) :
            new Template(c[i]).evaluate(m));
          e = e.replace(m[0], '');
          break;
        }
      }
    }

    this.matcher.push("return h.unique(n);\n}");
    eval(this.matcher.join('\n'));
    Selector._cache[this.expression] = this.matcher;
  },

  compileXPathMatcher: function() {
    var e = this.expression, ps = Selector.patterns,
        x = Selector.xpath, le, m;

    if (Selector._cache[e]) {
      this.xpath = Selector._cache[e]; return;
    }

    this.matcher = ['.//*'];
    while (e && le != e && (/\S/).test(e)) {
      le = e;
      for (var i in ps) {
        if (m = e.match(ps[i])) {
          this.matcher.push(Object.isFunction(x[i]) ? x[i](m) :
            new Template(x[i]).evaluate(m));
          e = e.replace(m[0], '');
          break;
        }
      }
    }

    this.xpath = this.matcher.join('');
    Selector._cache[this.expression] = this.xpath;
  },

  findElements: function(root) {
    root = root || document;
    var e = this.expression, results;

    switch (this.mode) {
      case 'selectorsAPI':
        // querySelectorAll queries document-wide, then filters to descendants
        // of the context element. That's not what we want.
        // Add an explicit context to the selector if necessary.
        if (root !== document) {
          var oldId = root.id, id = $(root).identify();
          e = "#" + id + " " + e;
        }

        results = $A(root.querySelectorAll(e)).map(Element.extend);
        root.id = oldId;

        return results;
      case 'xpath':
        return document._getElementsByXPath(this.xpath, root);
      default:
       return this.matcher(root);
    }
  },

  match: function(element) {
    this.tokens = [];

    var e = this.expression, ps = Selector.patterns, as = Selector.assertions;
    var le, p, m;

    while (e && le !== e && (/\S/).test(e)) {
      le = e;
      for (var i in ps) {
        p = ps[i];
        if (m = e.match(p)) {
          // use the Selector.assertions methods unless the selector
          // is too complex.
          if (as[i]) {
            this.tokens.push([i, Object.clone(m)]);
            e = e.replace(m[0], '');
          } else {
            // reluctantly do a document-wide search
            // and look for a match in the array
            return this.findElements(document).include(element);
          }
        }
      }
    }

    var match = true, name, matches;
    for (var i = 0, token; token = this.tokens[i]; i++) {
      name = token[0], matches = token[1];
      if (!Selector.assertions[name](element, matches)) {
        match = false; break;
      }
    }

    return match;
  },

  toString: function() {
    return this.expression;
  },

  inspect: function() {
    return "#<Selector:" + this.expression.inspect() + ">";
  }
});

Object.extend(Selector, {
  _cache: { },

  xpath: {
    descendant:   "//*",
    child:        "/*",
    adjacent:     "/following-sibling::*[1]",
    laterSibling: '/following-sibling::*',
    tagName:      function(m) {
      if (m[1] == '*') return '';
      return "[local-name()='" + m[1].toLowerCase() +
             "' or local-name()='" + m[1].toUpperCase() + "']";
    },
    className:    "[contains(concat(' ', @class, ' '), ' #{1} ')]",
    id:           "[@id='#{1}']",
    attrPresence: function(m) {
      m[1] = m[1].toLowerCase();
      return new Template("[@#{1}]").evaluate(m);
    },
    attr: function(m) {
      m[1] = m[1].toLowerCase();
      m[3] = m[5] || m[6];
      return new Template(Selector.xpath.operators[m[2]]).evaluate(m);
    },
    pseudo: function(m) {
      var h = Selector.xpath.pseudos[m[1]];
      if (!h) return '';
      if (Object.isFunction(h)) return h(m);
      return new Template(Selector.xpath.pseudos[m[1]]).evaluate(m);
    },
    operators: {
      '=':  "[@#{1}='#{3}']",
      '!=': "[@#{1}!='#{3}']",
      '^=': "[starts-with(@#{1}, '#{3}')]",
      '$=': "[substring(@#{1}, (string-length(@#{1}) - string-length('#{3}') + 1))='#{3}']",
      '*=': "[contains(@#{1}, '#{3}')]",
      '~=': "[contains(concat(' ', @#{1}, ' '), ' #{3} ')]",
      '|=': "[contains(concat('-', @#{1}, '-'), '-#{3}-')]"
    },
    pseudos: {
      'first-child': '[not(preceding-sibling::*)]',
      'last-child':  '[not(following-sibling::*)]',
      'only-child':  '[not(preceding-sibling::* or following-sibling::*)]',
      'empty':       "[count(*) = 0 and (count(text()) = 0)]",
      'checked':     "[@checked]",
      'disabled':    "[(@disabled) and (@type!='hidden')]",
      'enabled':     "[not(@disabled) and (@type!='hidden')]",
      'not': function(m) {
        var e = m[6], p = Selector.patterns,
            x = Selector.xpath, le, v;

        var exclusion = [];
        while (e && le != e && (/\S/).test(e)) {
          le = e;
          for (var i in p) {
            if (m = e.match(p[i])) {
              v = Object.isFunction(x[i]) ? x[i](m) : new Template(x[i]).evaluate(m);
              exclusion.push("(" + v.substring(1, v.length - 1) + ")");
              e = e.replace(m[0], '');
              break;
            }
          }
        }
        return "[not(" + exclusion.join(" and ") + ")]";
      },
      'nth-child':      function(m) {
        return Selector.xpath.pseudos.nth("(count(./preceding-sibling::*) + 1) ", m);
      },
      'nth-last-child': function(m) {
        return Selector.xpath.pseudos.nth("(count(./following-sibling::*) + 1) ", m);
      },
      'nth-of-type':    function(m) {
        return Selector.xpath.pseudos.nth("position() ", m);
      },
      'nth-last-of-type': function(m) {
        return Selector.xpath.pseudos.nth("(last() + 1 - position()) ", m);
      },
      'first-of-type':  function(m) {
        m[6] = "1"; return Selector.xpath.pseudos['nth-of-type'](m);
      },
      'last-of-type':   function(m) {
        m[6] = "1"; return Selector.xpath.pseudos['nth-last-of-type'](m);
      },
      'only-of-type':   function(m) {
        var p = Selector.xpath.pseudos; return p['first-of-type'](m) + p['last-of-type'](m);
      },
      nth: function(fragment, m) {
        var mm, formula = m[6], predicate;
        if (formula == 'even') formula = '2n+0';
        if (formula == 'odd')  formula = '2n+1';
        if (mm = formula.match(/^(\d+)$/)) // digit only
          return '[' + fragment + "= " + mm[1] + ']';
        if (mm = formula.match(/^(-?\d*)?n(([+-])(\d+))?/)) { // an+b
          if (mm[1] == "-") mm[1] = -1;
          var a = mm[1] ? Number(mm[1]) : 1;
          var b = mm[2] ? Number(mm[2]) : 0;
          predicate = "[((#{fragment} - #{b}) mod #{a} = 0) and " +
          "((#{fragment} - #{b}) div #{a} >= 0)]";
          return new Template(predicate).evaluate({
            fragment: fragment, a: a, b: b });
        }
      }
    }
  },

  criteria: {
    tagName:      'n = h.tagName(n, r, "#{1}", c);      c = false;',
    className:    'n = h.className(n, r, "#{1}", c);    c = false;',
    id:           'n = h.id(n, r, "#{1}", c);           c = false;',
    attrPresence: 'n = h.attrPresence(n, r, "#{1}", c); c = false;',
    attr: function(m) {
      m[3] = (m[5] || m[6]);
      return new Template('n = h.attr(n, r, "#{1}", "#{3}", "#{2}", c); c = false;').evaluate(m);
    },
    pseudo: function(m) {
      if (m[6]) m[6] = m[6].replace(/"/g, '\\"');
      return new Template('n = h.pseudo(n, "#{1}", "#{6}", r, c); c = false;').evaluate(m);
    },
    descendant:   'c = "descendant";',
    child:        'c = "child";',
    adjacent:     'c = "adjacent";',
    laterSibling: 'c = "laterSibling";'
  },

  patterns: {
    // combinators must be listed first
    // (and descendant needs to be last combinator)
    laterSibling: /^\s*~\s*/,
    child:        /^\s*>\s*/,
    adjacent:     /^\s*\+\s*/,
    descendant:   /^\s/,

    // selectors follow
    tagName:      /^\s*(\*|[\w\-]+)(\b|$)?/,
    id:           /^#([\w\-\*]+)(\b|$)/,
    className:    /^\.([\w\-\*]+)(\b|$)/,
    pseudo:
/^:((first|last|nth|nth-last|only)(-child|-of-type)|empty|checked|(en|dis)abled|not)(\((.*?)\))?(\b|$|(?=\s|[:+~>]))/,
    attrPresence: /^\[((?:[\w]+:)?[\w]+)\]/,
    attr:         /\[((?:[\w-]*:)?[\w-]+)\s*(?:([!^$*~|]?=)\s*((['"])([^\4]*?)\4|([^'"][^\]]*?)))?\]/
  },

  // for Selector.match and Element#match
  assertions: {
    tagName: function(element, matches) {
      return matches[1].toUpperCase() == element.tagName.toUpperCase();
    },

    className: function(element, matches) {
      return Element.hasClassName(element, matches[1]);
    },

    id: function(element, matches) {
      return element.id === matches[1];
    },

    attrPresence: function(element, matches) {
      return Element.hasAttribute(element, matches[1]);
    },

    attr: function(element, matches) {
      var nodeValue = Element.readAttribute(element, matches[1]);
      return nodeValue && Selector.operators[matches[2]](nodeValue, matches[5] || matches[6]);
    }
  },

  handlers: {
    // UTILITY FUNCTIONS
    // joins two collections
    concat: function(a, b) {
      for (var i = 0, node; node = b[i]; i++)
        a.push(node);
      return a;
    },

    // marks an array of nodes for counting
    mark: function(nodes) {
      var _true = Prototype.emptyFunction;
      for (var i = 0, node; node = nodes[i]; i++)
        node._countedByPrototype = _true;
      return nodes;
    },

    unmark: function(nodes) {
      for (var i = 0, node; node = nodes[i]; i++)
        node._countedByPrototype = undefined;
      return nodes;
    },

    // mark each child node with its position (for nth calls)
    // "ofType" flag indicates whether we're indexing for nth-of-type
    // rather than nth-child
    index: function(parentNode, reverse, ofType) {
      parentNode._countedByPrototype = Prototype.emptyFunction;
      if (reverse) {
        for (var nodes = parentNode.childNodes, i = nodes.length - 1, j = 1; i >= 0; i--) {
          var node = nodes[i];
          if (node.nodeType == 1 && (!ofType || node._countedByPrototype)) node.nodeIndex = j++;
        }
      } else {
        for (var i = 0, j = 1, nodes = parentNode.childNodes; node = nodes[i]; i++)
          if (node.nodeType == 1 && (!ofType || node._countedByPrototype)) node.nodeIndex = j++;
      }
    },

    // filters out duplicates and extends all nodes
    unique: function(nodes) {
      if (nodes.length == 0) return nodes;
      var results = [], n;
      for (var i = 0, l = nodes.length; i < l; i++)
        if (!(n = nodes[i])._countedByPrototype) {
          n._countedByPrototype = Prototype.emptyFunction;
          results.push(Element.extend(n));
        }
      return Selector.handlers.unmark(results);
    },

    // COMBINATOR FUNCTIONS
    descendant: function(nodes) {
      var h = Selector.handlers;
      for (var i = 0, results = [], node; node = nodes[i]; i++)
        h.concat(results, node.getElementsByTagName('*'));
      return results;
    },

    child: function(nodes) {
      var h = Selector.handlers;
      for (var i = 0, results = [], node; node = nodes[i]; i++) {
        for (var j = 0, child; child = node.childNodes[j]; j++)
          if (child.nodeType == 1 && child.tagName != '!') results.push(child);
      }
      return results;
    },

    adjacent: function(nodes) {
      for (var i = 0, results = [], node; node = nodes[i]; i++) {
        var next = this.nextElementSibling(node);
        if (next) results.push(next);
      }
      return results;
    },

    laterSibling: function(nodes) {
      var h = Selector.handlers;
      for (var i = 0, results = [], node; node = nodes[i]; i++)
        h.concat(results, Element.nextSiblings(node));
      return results;
    },

    nextElementSibling: function(node) {
      while (node = node.nextSibling)
        if (node.nodeType == 1) return node;
      return null;
    },

    previousElementSibling: function(node) {
      while (node = node.previousSibling)
        if (node.nodeType == 1) return node;
      return null;
    },

    // TOKEN FUNCTIONS
    tagName: function(nodes, root, tagName, combinator) {
      var uTagName = tagName.toUpperCase();
      var results = [], h = Selector.handlers;
      if (nodes) {
        if (combinator) {
          // fastlane for ordinary descendant combinators
          if (combinator == "descendant") {
            for (var i = 0, node; node = nodes[i]; i++)
              h.concat(results, node.getElementsByTagName(tagName));
            return results;
          } else nodes = this[combinator](nodes);
          if (tagName == "*") return nodes;
        }
        for (var i = 0, node; node = nodes[i]; i++)
          if (node.tagName.toUpperCase() === uTagName) results.push(node);
        return results;
      } else return root.getElementsByTagName(tagName);
    },

    id: function(nodes, root, id, combinator) {
      var targetNode = $(id), h = Selector.handlers;
      if (!targetNode) return [];
      if (!nodes && root == document) return [targetNode];
      if (nodes) {
        if (combinator) {
          if (combinator == 'child') {
            for (var i = 0, node; node = nodes[i]; i++)
              if (targetNode.parentNode == node) return [targetNode];
          } else if (combinator == 'descendant') {
            for (var i = 0, node; node = nodes[i]; i++)
              if (Element.descendantOf(targetNode, node)) return [targetNode];
          } else if (combinator == 'adjacent') {
            for (var i = 0, node; node = nodes[i]; i++)
              if (Selector.handlers.previousElementSibling(targetNode) == node)
                return [targetNode];
          } else nodes = h[combinator](nodes);
        }
        for (var i = 0, node; node = nodes[i]; i++)
          if (node == targetNode) return [targetNode];
        return [];
      }
      return (targetNode && Element.descendantOf(targetNode, root)) ? [targetNode] : [];
    },

    className: function(nodes, root, className, combinator) {
      if (nodes && combinator) nodes = this[combinator](nodes);
      return Selector.handlers.byClassName(nodes, root, className);
    },

    byClassName: function(nodes, root, className) {
      if (!nodes) nodes = Selector.handlers.descendant([root]);
      var needle = ' ' + className + ' ';
      for (var i = 0, results = [], node, nodeClassName; node = nodes[i]; i++) {
        nodeClassName = node.className;
        if (nodeClassName.length == 0) continue;
        if (nodeClassName == className || (' ' + nodeClassName + ' ').include(needle))
          results.push(node);
      }
      return results;
    },

    attrPresence: function(nodes, root, attr, combinator) {
      if (!nodes) nodes = root.getElementsByTagName("*");
      if (nodes && combinator) nodes = this[combinator](nodes);
      var results = [];
      for (var i = 0, node; node = nodes[i]; i++)
        if (Element.hasAttribute(node, attr)) results.push(node);
      return results;
    },

    attr: function(nodes, root, attr, value, operator, combinator) {
      if (!nodes) nodes = root.getElementsByTagName("*");
      if (nodes && combinator) nodes = this[combinator](nodes);
      var handler = Selector.operators[operator], results = [];
      for (var i = 0, node; node = nodes[i]; i++) {
        var nodeValue = Element.readAttribute(node, attr);
        if (nodeValue === null) continue;
        if (handler(nodeValue, value)) results.push(node);
      }
      return results;
    },

    pseudo: function(nodes, name, value, root, combinator) {
      if (nodes && combinator) nodes = this[combinator](nodes);
      if (!nodes) nodes = root.getElementsByTagName("*");
      return Selector.pseudos[name](nodes, value, root);
    }
  },

  pseudos: {
    'first-child': function(nodes, value, root) {
      for (var i = 0, results = [], node; node = nodes[i]; i++) {
        if (Selector.handlers.previousElementSibling(node)) continue;
          results.push(node);
      }
      return results;
    },
    'last-child': function(nodes, value, root) {
      for (var i = 0, results = [], node; node = nodes[i]; i++) {
        if (Selector.handlers.nextElementSibling(node)) continue;
          results.push(node);
      }
      return results;
    },
    'only-child': function(nodes, value, root) {
      var h = Selector.handlers;
      for (var i = 0, results = [], node; node = nodes[i]; i++)
        if (!h.previousElementSibling(node) && !h.nextElementSibling(node))
          results.push(node);
      return results;
    },
    'nth-child':        function(nodes, formula, root) {
      return Selector.pseudos.nth(nodes, formula, root);
    },
    'nth-last-child':   function(nodes, formula, root) {
      return Selector.pseudos.nth(nodes, formula, root, true);
    },
    'nth-of-type':      function(nodes, formula, root) {
      return Selector.pseudos.nth(nodes, formula, root, false, true);
    },
    'nth-last-of-type': function(nodes, formula, root) {
      return Selector.pseudos.nth(nodes, formula, root, true, true);
    },
    'first-of-type':    function(nodes, formula, root) {
      return Selector.pseudos.nth(nodes, "1", root, false, true);
    },
    'last-of-type':     function(nodes, formula, root) {
      return Selector.pseudos.nth(nodes, "1", root, true, true);
    },
    'only-of-type':     function(nodes, formula, root) {
      var p = Selector.pseudos;
      return p['last-of-type'](p['first-of-type'](nodes, formula, root), formula, root);
    },

    // handles the an+b logic
    getIndices: function(a, b, total) {
      if (a == 0) return b > 0 ? [b] : [];
      return $R(1, total).inject([], function(memo, i) {
        if (0 == (i - b) % a && (i - b) / a >= 0) memo.push(i);
        return memo;
      });
    },

    // handles nth(-last)-child, nth(-last)-of-type, and (first|last)-of-type
    nth: function(nodes, formula, root, reverse, ofType) {
      if (nodes.length == 0) return [];
      if (formula == 'even') formula = '2n+0';
      if (formula == 'odd')  formula = '2n+1';
      var h = Selector.handlers, results = [], indexed = [], m;
      h.mark(nodes);
      for (var i = 0, node; node = nodes[i]; i++) {
        if (!node.parentNode._countedByPrototype) {
          h.index(node.parentNode, reverse, ofType);
          indexed.push(node.parentNode);
        }
      }
      if (formula.match(/^\d+$/)) { // just a number
        formula = Number(formula);
        for (var i = 0, node; node = nodes[i]; i++)
          if (node.nodeIndex == formula) results.push(node);
      } else if (m = formula.match(/^(-?\d*)?n(([+-])(\d+))?/)) { // an+b
        if (m[1] == "-") m[1] = -1;
        var a = m[1] ? Number(m[1]) : 1;
        var b = m[2] ? Number(m[2]) : 0;
        var indices = Selector.pseudos.getIndices(a, b, nodes.length);
        for (var i = 0, node, l = indices.length; node = nodes[i]; i++) {
          for (var j = 0; j < l; j++)
            if (node.nodeIndex == indices[j]) results.push(node);
        }
      }
      h.unmark(nodes);
      h.unmark(indexed);
      return results;
    },

    'empty': function(nodes, value, root) {
      for (var i = 0, results = [], node; node = nodes[i]; i++) {
        // IE treats comments as element nodes
        if (node.tagName == '!' || node.firstChild) continue;
        results.push(node);
      }
      return results;
    },

    'not': function(nodes, selector, root) {
      var h = Selector.handlers, selectorType, m;
      var exclusions = new Selector(selector).findElements(root);
      h.mark(exclusions);
      for (var i = 0, results = [], node; node = nodes[i]; i++)
        if (!node._countedByPrototype) results.push(node);
      h.unmark(exclusions);
      return results;
    },

    'enabled': function(nodes, value, root) {
      for (var i = 0, results = [], node; node = nodes[i]; i++)
        if (!node.disabled && (!node.type || node.type !== 'hidden'))
          results.push(node);
      return results;
    },

    'disabled': function(nodes, value, root) {
      for (var i = 0, results = [], node; node = nodes[i]; i++)
        if (node.disabled) results.push(node);
      return results;
    },

    'checked': function(nodes, value, root) {
      for (var i = 0, results = [], node; node = nodes[i]; i++)
        if (node.checked) results.push(node);
      return results;
    }
  },

  operators: {
    '=':  function(nv, v) { return nv == v; },
    '!=': function(nv, v) { return nv != v; },
    '^=': function(nv, v) { return nv == v || nv && nv.startsWith(v); },
    '$=': function(nv, v) { return nv == v || nv && nv.endsWith(v); },
    '*=': function(nv, v) { return nv == v || nv && nv.include(v); },
    '$=': function(nv, v) { return nv.endsWith(v); },
    '*=': function(nv, v) { return nv.include(v); },
    '~=': function(nv, v) { return (' ' + nv + ' ').include(' ' + v + ' '); },
    '|=': function(nv, v) { return ('-' + (nv || "").toUpperCase() +
     '-').include('-' + (v || "").toUpperCase() + '-'); }
  },

  split: function(expression) {
    var expressions = [];
    expression.scan(/(([\w#:.~>+()\s-]+|\*|\[.*?\])+)\s*(,|$)/, function(m) {
      expressions.push(m[1].strip());
    });
    return expressions;
  },

  matchElements: function(elements, expression) {
    var matches = $$(expression), h = Selector.handlers;
    h.mark(matches);
    for (var i = 0, results = [], element; element = elements[i]; i++)
      if (element._countedByPrototype) results.push(element);
    h.unmark(matches);
    return results;
  },

  findElement: function(elements, expression, index) {
    if (Object.isNumber(expression)) {
      index = expression; expression = false;
    }
    return Selector.matchElements(elements, expression || '*')[index || 0];
  },

  findChildElements: function(element, expressions) {
    expressions = Selector.split(expressions.join(','));
    var results = [], h = Selector.handlers;
    for (var i = 0, l = expressions.length, selector; i < l; i++) {
      selector = new Selector(expressions[i].strip());
      h.concat(results, selector.findElements(element));
    }
    return (l > 1) ? h.unique(results) : results;
  }
});

if (Prototype.Browser.IE) {
  Object.extend(Selector.handlers, {
    // IE returns comment nodes on getElementsByTagName("*").
    // Filter them out.
    concat: function(a, b) {
      for (var i = 0, node; node = b[i]; i++)
        if (node.tagName !== "!") a.push(node);
      return a;
    },

    // IE improperly serializes _countedByPrototype in (inner|outer)HTML.
    unmark: function(nodes) {
      for (var i = 0, node; node = nodes[i]; i++)
        node.removeAttribute('_countedByPrototype');
      return nodes;
    }
  });
}

function $$() {
  return Selector.findChildElements(document, $A(arguments));
}
var Form = {
  reset: function(form) {
    $(form).reset();
    return form;
  },

  serializeElements: function(elements, options) {
    if (typeof options != 'object') options = { hash: !!options };
    else if (Object.isUndefined(options.hash)) options.hash = true;
    var key, value, submitted = false, submit = options.submit;

    var data = elements.inject({ }, function(result, element) {
      if (!element.disabled && element.name) {
        key = element.name; value = $(element).getValue();
        if (value != null && element.type != 'file' && (element.type != 'submit' || (!submitted &&
            submit !== false && (!submit || key == submit) && (submitted = true)))) {
          if (key in result) {
            // a key is already present; construct an array of values
            if (!Object.isArray(result[key])) result[key] = [result[key]];
            result[key].push(value);
          }
          else result[key] = value;
        }
      }
      return result;
    });

    return options.hash ? data : Object.toQueryString(data);
  }
};

Form.Methods = {
  serialize: function(form, options) {
    return Form.serializeElements(Form.getElements(form), options);
  },

  getElements: function(form) {
    return $A($(form).getElementsByTagName('*')).inject([],
      function(elements, child) {
        if (Form.Element.Serializers[child.tagName.toLowerCase()])
          elements.push(Element.extend(child));
        return elements;
      }
    );
  },

  getInputs: function(form, typeName, name) {
    form = $(form);
    var inputs = form.getElementsByTagName('input');

    if (!typeName && !name) return $A(inputs).map(Element.extend);

    for (var i = 0, matchingInputs = [], length = inputs.length; i < length; i++) {
      var input = inputs[i];
      if ((typeName && input.type != typeName) || (name && input.name != name))
        continue;
      matchingInputs.push(Element.extend(input));
    }

    return matchingInputs;
  },

  disable: function(form) {
    form = $(form);
    Form.getElements(form).invoke('disable');
    return form;
  },

  enable: function(form) {
    form = $(form);
    Form.getElements(form).invoke('enable');
    return form;
  },

  findFirstElement: function(form) {
    var elements = $(form).getElements().findAll(function(element) {
      return 'hidden' != element.type && !element.disabled;
    });
    var firstByIndex = elements.findAll(function(element) {
      return element.hasAttribute('tabIndex') && element.tabIndex >= 0;
    }).sortBy(function(element) { return element.tabIndex }).first();

    return firstByIndex ? firstByIndex : elements.find(function(element) {
      return ['input', 'select', 'textarea'].include(element.tagName.toLowerCase());
    });
  },

  focusFirstElement: function(form) {
    form = $(form);
    form.findFirstElement().activate();
    return form;
  },

  request: function(form, options) {
    form = $(form), options = Object.clone(options || { });

    var params = options.parameters, action = form.readAttribute('action') || '';
    if (action.blank()) action = window.location.href;
    options.parameters = form.serialize(true);

    if (params) {
      if (Object.isString(params)) params = params.toQueryParams();
      Object.extend(options.parameters, params);
    }

    if (form.hasAttribute('method') && !options.method)
      options.method = form.method;

    return new Ajax.Request(action, options);
  }
};

/*--------------------------------------------------------------------------*/

Form.Element = {
  focus: function(element) {
    $(element).focus();
    return element;
  },

  select: function(element) {
    $(element).select();
    return element;
  }
};

Form.Element.Methods = {
  serialize: function(element) {
    element = $(element);
    if (!element.disabled && element.name) {
      var value = element.getValue();
      if (value != undefined) {
        var pair = { };
        pair[element.name] = value;
        return Object.toQueryString(pair);
      }
    }
    return '';
  },

  getValue: function(element) {
    element = $(element);
    var method = element.tagName.toLowerCase();
    return Form.Element.Serializers[method](element);
  },

  setValue: function(element, value) {
    element = $(element);
    var method = element.tagName.toLowerCase();
    Form.Element.Serializers[method](element, value);
    return element;
  },

  clear: function(element) {
    $(element).value = '';
    return element;
  },

  present: function(element) {
    return $(element).value != '';
  },

  activate: function(element) {
    element = $(element);
    try {
      element.focus();
      if (element.select && (element.tagName.toLowerCase() != 'input' ||
          !['button', 'reset', 'submit'].include(element.type)))
        element.select();
    } catch (e) { }
    return element;
  },

  disable: function(element) {
    element = $(element);
    element.disabled = true;
    return element;
  },

  enable: function(element) {
    element = $(element);
    element.disabled = false;
    return element;
  }
};

/*--------------------------------------------------------------------------*/

var Field = Form.Element;
var $F = Form.Element.Methods.getValue;

/*--------------------------------------------------------------------------*/

Form.Element.Serializers = {
  input: function(element, value) {
    switch (element.type.toLowerCase()) {
      case 'checkbox':
      case 'radio':
        return Form.Element.Serializers.inputSelector(element, value);
      default:
        return Form.Element.Serializers.textarea(element, value);
    }
  },

  inputSelector: function(element, value) {
    if (Object.isUndefined(value)) return element.checked ? element.value : null;
    else element.checked = !!value;
  },

  textarea: function(element, value) {
    if (Object.isUndefined(value)) return element.value;
    else element.value = value;
  },

  select: function(element, value) {
    if (Object.isUndefined(value))
      return this[element.type == 'select-one' ?
        'selectOne' : 'selectMany'](element);
    else {
      var opt, currentValue, single = !Object.isArray(value);
      for (var i = 0, length = element.length; i < length; i++) {
        opt = element.options[i];
        currentValue = this.optionValue(opt);
        if (single) {
          if (currentValue == value) {
            opt.selected = true;
            return;
          }
        }
        else opt.selected = value.include(currentValue);
      }
    }
  },

  selectOne: function(element) {
    var index = element.selectedIndex;
    return index >= 0 ? this.optionValue(element.options[index]) : null;
  },

  selectMany: function(element) {
    var values, length = element.length;
    if (!length) return null;

    for (var i = 0, values = []; i < length; i++) {
      var opt = element.options[i];
      if (opt.selected) values.push(this.optionValue(opt));
    }
    return values;
  },

  optionValue: function(opt) {
    // extend element because hasAttribute may not be native
    return Element.extend(opt).hasAttribute('value') ? opt.value : opt.text;
  }
};

/*--------------------------------------------------------------------------*/

Abstract.TimedObserver = Class.create(PeriodicalExecuter, {
  initialize: function($super, element, frequency, callback) {
    $super(callback, frequency);
    this.element   = $(element);
    this.lastValue = this.getValue();
  },

  execute: function() {
    var value = this.getValue();
    if (Object.isString(this.lastValue) && Object.isString(value) ?
        this.lastValue != value : String(this.lastValue) != String(value)) {
      this.callback(this.element, value);
      this.lastValue = value;
    }
  }
});

Form.Element.Observer = Class.create(Abstract.TimedObserver, {
  getValue: function() {
    return Form.Element.getValue(this.element);
  }
});

Form.Observer = Class.create(Abstract.TimedObserver, {
  getValue: function() {
    return Form.serialize(this.element);
  }
});

/*--------------------------------------------------------------------------*/

Abstract.EventObserver = Class.create({
  initialize: function(element, callback) {
    this.element  = $(element);
    this.callback = callback;

    this.lastValue = this.getValue();
    if (this.element.tagName.toLowerCase() == 'form')
      this.registerFormCallbacks();
    else
      this.registerCallback(this.element);
  },

  onElementEvent: function() {
    var value = this.getValue();
    if (this.lastValue != value) {
      this.callback(this.element, value);
      this.lastValue = value;
    }
  },

  registerFormCallbacks: function() {
    Form.getElements(this.element).each(this.registerCallback, this);
  },

  registerCallback: function(element) {
    if (element.type) {
      switch (element.type.toLowerCase()) {
        case 'checkbox':
        case 'radio':
          Event.observe(element, 'click', this.onElementEvent.bind(this));
          break;
        default:
          Event.observe(element, 'change', this.onElementEvent.bind(this));
          break;
      }
    }
  }
});

Form.Element.EventObserver = Class.create(Abstract.EventObserver, {
  getValue: function() {
    return Form.Element.getValue(this.element);
  }
});

Form.EventObserver = Class.create(Abstract.EventObserver, {
  getValue: function() {
    return Form.serialize(this.element);
  }
});
if (!window.Event) var Event = { };

Object.extend(Event, {
  KEY_BACKSPACE: 8,
  KEY_TAB:       9,
  KEY_RETURN:   13,
  KEY_ESC:      27,
  KEY_LEFT:     37,
  KEY_UP:       38,
  KEY_RIGHT:    39,
  KEY_DOWN:     40,
  KEY_DELETE:   46,
  KEY_HOME:     36,
  KEY_END:      35,
  KEY_PAGEUP:   33,
  KEY_PAGEDOWN: 34,
  KEY_INSERT:   45,

  cache: { },

  relatedTarget: function(event) {
    var element;
    switch(event.type) {
      case 'mouseover': element = event.fromElement; break;
      case 'mouseout':  element = event.toElement;   break;
      default: return null;
    }
    return Element.extend(element);
  }
});

Event.Methods = (function() {
  var isButton;

  if (Prototype.Browser.IE) {
    var buttonMap = { 0: 1, 1: 4, 2: 2 };
    isButton = function(event, code) {
      return event.button == buttonMap[code];
    };

  } else if (Prototype.Browser.WebKit) {
    isButton = function(event, code) {
      switch (code) {
        case 0: return event.which == 1 && !event.metaKey;
        case 1: return event.which == 1 && event.metaKey;
        default: return false;
      }
    };

  } else {
    isButton = function(event, code) {
      return event.which ? (event.which === code + 1) : (event.button === code);
    };
  }

  return {
    isLeftClick:   function(event) { return isButton(event, 0) },
    isMiddleClick: function(event) { return isButton(event, 1) },
    isRightClick:  function(event) { return isButton(event, 2) },

    element: function(event) {
      event = Event.extend(event);

      var node          = event.target,
          type          = event.type,
          currentTarget = event.currentTarget;

      if (currentTarget && currentTarget.tagName) {
        // Firefox screws up the "click" event when moving between radio buttons
        // via arrow keys. It also screws up the "load" and "error" events on images,
        // reporting the document as the target instead of the original image.
        if (type === 'load' || type === 'error' ||
          (type === 'click' && currentTarget.tagName.toLowerCase() === 'input'
            && currentTarget.type === 'radio'))
              node = currentTarget;
      }
      if (node.nodeType == Node.TEXT_NODE) node = node.parentNode;
      return Element.extend(node);
    },

    findElement: function(event, expression) {
      var element = Event.element(event);
      if (!expression) return element;
      var elements = [element].concat(element.ancestors());
      return Selector.findElement(elements, expression, 0);
    },

    pointer: function(event) {
      var docElement = document.documentElement,
      body = document.body || { scrollLeft: 0, scrollTop: 0 };
      return {
        x: event.pageX || (event.clientX +
          (docElement.scrollLeft || body.scrollLeft) -
          (docElement.clientLeft || 0)),
        y: event.pageY || (event.clientY +
          (docElement.scrollTop || body.scrollTop) -
          (docElement.clientTop || 0))
      };
    },

    pointerX: function(event) { return Event.pointer(event).x },
    pointerY: function(event) { return Event.pointer(event).y },

    stop: function(event) {
      Event.extend(event);
      event.preventDefault();
      event.stopPropagation();
      event.stopped = true;
    }
  };
})();

Event.extend = (function() {
  var methods = Object.keys(Event.Methods).inject({ }, function(m, name) {
    m[name] = Event.Methods[name].methodize();
    return m;
  });

  if (Prototype.Browser.IE) {
    Object.extend(methods, {
      stopPropagation: function() { this.cancelBubble = true },
      preventDefault:  function() { this.returnValue = false },
      inspect: function() { return "[object Event]" }
    });

    return function(event) {
      if (!event) return false;
      if (event._extendedByPrototype) return event;

      event._extendedByPrototype = Prototype.emptyFunction;
      var pointer = Event.pointer(event);
      Object.extend(event, {
        target: event.srcElement,
        relatedTarget: Event.relatedTarget(event),
        pageX:  pointer.x,
        pageY:  pointer.y
      });
      return Object.extend(event, methods);
    };

  } else {
    Event.prototype = Event.prototype || document.createEvent("HTMLEvents")['__proto__'];
    Object.extend(Event.prototype, methods);
    return Prototype.K;
  }
})();

Object.extend(Event, (function() {
  var cache = Event.cache;

  function getEventID(element) {
    if (element._prototypeEventID) return element._prototypeEventID[0];
    arguments.callee.id = arguments.callee.id || 1;
    return element._prototypeEventID = [++arguments.callee.id];
  }

  function getDOMEventName(eventName) {
    if (eventName && eventName.include(':')) return "dataavailable";
    return eventName;
  }

  function getCacheForID(id) {
    return cache[id] = cache[id] || { };
  }

  function getWrappersForEventName(id, eventName) {
    var c = getCacheForID(id);
    return c[eventName] = c[eventName] || [];
  }

  function createWrapper(element, eventName, handler) {
    var id = getEventID(element);
    var c = getWrappersForEventName(id, eventName);
    if (c.pluck("handler").include(handler)) return false;

    var wrapper = function(event) {
      if (!Event || !Event.extend ||
        (event.eventName && event.eventName != eventName))
          return false;

      Event.extend(event);
      handler.call(element, event);
    };

    wrapper.handler = handler;
    c.push(wrapper);
    return wrapper;
  }

  function findWrapper(id, eventName, handler) {
    var c = getWrappersForEventName(id, eventName);
    return c.find(function(wrapper) { return wrapper.handler == handler });
  }

  function destroyWrapper(id, eventName, handler) {
    var c = getCacheForID(id);
    if (!c[eventName]) return false;
    c[eventName] = c[eventName].without(findWrapper(id, eventName, handler));
  }

  function destroyCache() {
    for (var id in cache)
      for (var eventName in cache[id])
        cache[id][eventName] = null;
  }


  // Internet Explorer needs to remove event handlers on page unload
  // in order to avoid memory leaks.
  if (window.attachEvent) {
    window.attachEvent("onunload", destroyCache);
  }

  // Safari has a dummy event handler on page unload so that it won't
  // use its bfcache. Safari <= 3.1 has an issue with restoring the "document"
  // object when page is returned to via the back button using its bfcache.
  if (Prototype.Browser.WebKit) {
    window.addEventListener('unload', Prototype.emptyFunction, false);
  }

  return {
    observe: function(element, eventName, handler) {
      element = $(element);
      var name = getDOMEventName(eventName);

      var wrapper = createWrapper(element, eventName, handler);
      if (!wrapper) return element;

      if (element.addEventListener) {
        element.addEventListener(name, wrapper, false);
      } else {
        element.attachEvent("on" + name, wrapper);
      }

      return element;
    },

    stopObserving: function(element, eventName, handler) {
      element = $(element);
      var id = getEventID(element), name = getDOMEventName(eventName);

      if (!handler && eventName) {
        getWrappersForEventName(id, eventName).each(function(wrapper) {
          element.stopObserving(eventName, wrapper.handler);
        });
        return element;

      } else if (!eventName) {
        Object.keys(getCacheForID(id)).each(function(eventName) {
          element.stopObserving(eventName);
        });
        return element;
      }

      var wrapper = findWrapper(id, eventName, handler);
      if (!wrapper) return element;

      if (element.removeEventListener) {
        element.removeEventListener(name, wrapper, false);
      } else {
        element.detachEvent("on" + name, wrapper);
      }

      destroyWrapper(id, eventName, handler);

      return element;
    },

    fire: function(element, eventName, memo) {
      element = $(element);
      if (element == document && document.createEvent && !element.dispatchEvent)
        element = document.documentElement;

      var event;
      if (document.createEvent) {
        event = document.createEvent("HTMLEvents");
        event.initEvent("dataavailable", true, true);
      } else {
        event = document.createEventObject();
        event.eventType = "ondataavailable";
      }

      event.eventName = eventName;
      event.memo = memo || { };

      if (document.createEvent) {
        element.dispatchEvent(event);
      } else {
        element.fireEvent(event.eventType, event);
      }

      return Event.extend(event);
    }
  };
})());

Object.extend(Event, Event.Methods);

Element.addMethods({
  fire:          Event.fire,
  observe:       Event.observe,
  stopObserving: Event.stopObserving
});

Object.extend(document, {
  fire:          Element.Methods.fire.methodize(),
  observe:       Element.Methods.observe.methodize(),
  stopObserving: Element.Methods.stopObserving.methodize(),
  loaded:        false
});

(function() {
  /* Support for the DOMContentLoaded event is based on work by Dan Webb,
     Matthias Miller, Dean Edwards and John Resig. */

  var timer;

  function fireContentLoadedEvent() {
    if (document.loaded) return;
    if (timer) window.clearInterval(timer);
    document.fire("dom:loaded");
    document.loaded = true;
  }

  if (document.addEventListener) {
    if (Prototype.Browser.WebKit) {
      timer = window.setInterval(function() {
        if (/loaded|complete/.test(document.readyState))
          fireContentLoadedEvent();
      }, 0);

      Event.observe(window, "load", fireContentLoadedEvent);

    } else {
      document.addEventListener("DOMContentLoaded",
        fireContentLoadedEvent, false);
    }

  } else {
    document.write("<script id=__onDOMContentLoaded defer src=//:><\/script>");
    $("__onDOMContentLoaded").onreadystatechange = function() {
      if (this.readyState == "complete") {
        this.onreadystatechange = null;
        fireContentLoadedEvent();
      }
    };
  }
})();
/*------------------------------- DEPRECATED -------------------------------*/

Hash.toQueryString = Object.toQueryString;

var Toggle = { display: Element.toggle };

Element.Methods.childOf = Element.Methods.descendantOf;

var Insertion = {
  Before: function(element, content) {
    return Element.insert(element, {before:content});
  },

  Top: function(element, content) {
    return Element.insert(element, {top:content});
  },

  Bottom: function(element, content) {
    return Element.insert(element, {bottom:content});
  },

  After: function(element, content) {
    return Element.insert(element, {after:content});
  }
};

var $continue = new Error('"throw $continue" is deprecated, use "return" instead');

// This should be moved to script.aculo.us; notice the deprecated methods
// further below, that map to the newer Element methods.
var Position = {
  // set to true if needed, warning: firefox performance problems
  // NOT neeeded for page scrolling, only if draggable contained in
  // scrollable elements
  includeScrollOffsets: false,

  // must be called before calling withinIncludingScrolloffset, every time the
  // page is scrolled
  prepare: function() {
    this.deltaX =  window.pageXOffset
                || document.documentElement.scrollLeft
                || document.body.scrollLeft
                || 0;
    this.deltaY =  window.pageYOffset
                || document.documentElement.scrollTop
                || document.body.scrollTop
                || 0;
  },

  // caches x/y coordinate pair to use with overlap
  within: function(element, x, y) {
    if (this.includeScrollOffsets)
      return this.withinIncludingScrolloffsets(element, x, y);
    this.xcomp = x;
    this.ycomp = y;
    this.offset = Element.cumulativeOffset(element);

    return (y >= this.offset[1] &&
            y <  this.offset[1] + element.offsetHeight &&
            x >= this.offset[0] &&
            x <  this.offset[0] + element.offsetWidth);
  },

  withinIncludingScrolloffsets: function(element, x, y) {
    var offsetcache = Element.cumulativeScrollOffset(element);

    this.xcomp = x + offsetcache[0] - this.deltaX;
    this.ycomp = y + offsetcache[1] - this.deltaY;
    this.offset = Element.cumulativeOffset(element);

    return (this.ycomp >= this.offset[1] &&
            this.ycomp <  this.offset[1] + element.offsetHeight &&
            this.xcomp >= this.offset[0] &&
            this.xcomp <  this.offset[0] + element.offsetWidth);
  },

  // within must be called directly before
  overlap: function(mode, element) {
    if (!mode) return 0;
    if (mode == 'vertical')
      return ((this.offset[1] + element.offsetHeight) - this.ycomp) /
        element.offsetHeight;
    if (mode == 'horizontal')
      return ((this.offset[0] + element.offsetWidth) - this.xcomp) /
        element.offsetWidth;
  },

  // Deprecation layer -- use newer Element methods now (1.5.2).

  cumulativeOffset: Element.Methods.cumulativeOffset,

  positionedOffset: Element.Methods.positionedOffset,

  absolutize: function(element) {
    Position.prepare();
    return Element.absolutize(element);
  },

  relativize: function(element) {
    Position.prepare();
    return Element.relativize(element);
  },

  realOffset: Element.Methods.cumulativeScrollOffset,

  offsetParent: Element.Methods.getOffsetParent,

  page: Element.Methods.viewportOffset,

  clone: function(source, target, options) {
    options = options || { };
    return Element.clonePosition(target, source, options);
  }
};

/*--------------------------------------------------------------------------*/

if (!document.getElementsByClassName) document.getElementsByClassName = function(instanceMethods){
  function iter(name) {
    return name.blank() ? null : "[contains(concat(' ', @class, ' '), ' " + name + " ')]";
  }

  instanceMethods.getElementsByClassName = Prototype.BrowserFeatures.XPath ?
  function(element, className) {
    className = className.toString().strip();
    var cond = /\s/.test(className) ? $w(className).map(iter).join('') : iter(className);
    return cond ? document._getElementsByXPath('.//*' + cond, element) : [];
  } : function(element, className) {
    className = className.toString().strip();
    var elements = [], classNames = (/\s/.test(className) ? $w(className) : null);
    if (!classNames && !className) return elements;

    var nodes = $(element).getElementsByTagName('*');
    className = ' ' + className + ' ';

    for (var i = 0, child, cn; child = nodes[i]; i++) {
      if (child.className && (cn = ' ' + child.className + ' ') && (cn.include(className) ||
          (classNames && classNames.all(function(name) {
            return !name.toString().blank() && cn.include(' ' + name + ' ');
          }))))
        elements.push(Element.extend(child));
    }
    return elements;
  };

  return function(className, parentElement) {
    return $(parentElement || document.body).getElementsByClassName(className);
  };
}(Element.Methods);

/*--------------------------------------------------------------------------*/

Element.ClassNames = Class.create();
Element.ClassNames.prototype = {
  initialize: function(element) {
    this.element = $(element);
  },

  _each: function(iterator) {
    this.element.className.split(/\s+/).select(function(name) {
      return name.length > 0;
    })._each(iterator);
  },

  set: function(className) {
    this.element.className = className;
  },

  add: function(classNameToAdd) {
    if (this.include(classNameToAdd)) return;
    this.set($A(this).concat(classNameToAdd).join(' '));
  },

  remove: function(classNameToRemove) {
    if (!this.include(classNameToRemove)) return;
    this.set($A(this).without(classNameToRemove).join(' '));
  },

  toString: function() {
    return $A(this).join(' ');
  }
};

Object.extend(Element.ClassNames.prototype, Enumerable);

/*--------------------------------------------------------------------------*/

Element.addMethods();

function urlencode( str ) {
	return Url.encode(str);
}/**
*
*  URL encode / decode
*  http://www.webtoolkit.info/
*
**/
 
var Url = {
 
	// public method for url encoding
	encode : function (string) {
		return escape(this._utf8_encode(string));
	},
 
	// public method for url decoding
	decode : function (string) {
		return this._utf8_decode(unescape(string));
	},
 
	// private method for UTF-8 encoding
	_utf8_encode : function (string) {
		string = string.replace(/\r\n/g,"\n");
		string = string.replace("+","%2B");
		var utftext = "";
 
		for (var n = 0; n < string.length; n++) {
 
			var c = string.charCodeAt(n);
 
			if (c < 128) {
				utftext += String.fromCharCode(c);
			}
			else if((c > 127) && (c < 2048)) {
				utftext += String.fromCharCode((c >> 6) | 192);
				utftext += String.fromCharCode((c & 63) | 128);
			}
			else {
				utftext += String.fromCharCode((c >> 12) | 224);
				utftext += String.fromCharCode(((c >> 6) & 63) | 128);
				utftext += String.fromCharCode((c & 63) | 128);
			}
 
		}
 
		return utftext;
	},
 
	// private method for UTF-8 decoding
	_utf8_decode : function (utftext) {
		var string = "";
		var i = 0;
		var c = c1 = c2 = 0;
 
		while ( i < utftext.length ) {
 
			c = utftext.charCodeAt(i);
 
			if (c < 128) {
				string += String.fromCharCode(c);
				i++;
			}
			else if((c > 191) && (c < 224)) {
				c2 = utftext.charCodeAt(i+1);
				string += String.fromCharCode(((c & 31) << 6) | (c2 & 63));
				i += 2;
			}
			else {
				c2 = utftext.charCodeAt(i+1);
				c3 = utftext.charCodeAt(i+2);
				string += String.fromCharCode(((c & 15) << 12) | ((c2 & 63) << 6) | (c3 & 63));
				i += 3;
			}
 
		}
 
		return string;
	}
 
};



var Content = Class.create({
	initialize: function(layout, options) {
		var c = this;
		var parameters = "";
		if ( layout ) {
			parameters = "layout="+urlencode(layout);
		}
		if ( !options ) {
			var options = {};
		}
		if ( options.parameters ) {
			if ( parameters ) {
				parameters+= "&";
			}
			parameters+= Object.toQueryString(options.parameters);
		}
		if ( !options.evalTimeout ) {
			options.evalTimeout = 0;
		}
		if ( typeof options.autoEval == 'undefined' ) {
			options.autoEval = true;
		}
		if ( !options.onComplete ) {
			options.onComplete = function(){};
		}
		new Ajax.Request('./request/',{
			parameters: parameters,
			onSuccess: function(transport) {
				if ( code = transport.responseText.stripScripts() ) {
					var node = Builder.build(code);
					var body_node = node.firstDescendant();
					if ( body_node ) {
						var style_node = body_node.nextSiblings()[0];
						if ( style_node ) {
							if ( style_node.innerHTML ) {
								$$("head")[0].appendChild(Builder.build('<style type="text/css">'+htmlEntityDecode(style_node.innerHTML)+'</style>'));
							}
						}
					}
				}
				c.data = transport.responseText;
				if ( options.onComplete ) {
					if ( body_node ) {
						var c_node = Builder.build(body_node.innerHTML);
					}
					options.onComplete(c_node);
				}
				if ( options.autoEval ) {
					setTimeout(function() {
						c.data.evalScripts();
						if ( options.onCompleteAfter ) {
							var node = null;
							if ( body_node ) {
								node = Builder.build(body_node.innerHTML);
							}
							options.onCompleteAfter(node);
						}
					}, options.evalTimeout*1000);
				}
			}
		});
	},
	evalScripts: function() {
		this.data.evalScripts();
	}
});// script.aculo.us builder.js v1.8.1, Thu Jan 03 22:07:12 -0500 2008

// Copyright (c) 2005-2007 Thomas Fuchs (http://script.aculo.us, http://mir.aculo.us)
//
// script.aculo.us is freely distributable under the terms of an MIT-style license.
// For details, see the script.aculo.us web site: http://script.aculo.us/

var Builder = {
  NODEMAP: {
    AREA: 'map',
    CAPTION: 'table',
    COL: 'table',
    COLGROUP: 'table',
    LEGEND: 'fieldset',
    OPTGROUP: 'select',
    OPTION: 'select',
    PARAM: 'object',
    TBODY: 'table',
    TD: 'table',
    TFOOT: 'table',
    TH: 'table',
    THEAD: 'table',
    TR: 'table'
  },
  // note: For Firefox < 1.5, OPTION and OPTGROUP tags are currently broken,
  //       due to a Firefox bug
  node: function(elementName) {
    elementName = elementName.toUpperCase();
    
    // try innerHTML approach
    var parentTag = this.NODEMAP[elementName] || 'div';
    var parentElement = document.createElement(parentTag);
    try { // prevent IE "feature": http://dev.rubyonrails.org/ticket/2707
      parentElement.innerHTML = "<" + elementName + "></" + elementName + ">";
    } catch(e) {}
    var element = parentElement.firstChild || null;
      
    // see if browser added wrapping tags
    if(element && (element.tagName.toUpperCase() != elementName))
      element = element.getElementsByTagName(elementName)[0];
    
    // fallback to createElement approach
    if(!element) element = document.createElement(elementName);
    
    // abort if nothing could be created
    if(!element) return;

    // attributes (or text)
    if(arguments[1])
      if(this._isStringOrNumber(arguments[1]) ||
        (arguments[1] instanceof Array) ||
        arguments[1].tagName) {
          this._children(element, arguments[1]);
        } else {
          var attrs = this._attributes(arguments[1]);
          if(attrs.length) {
            try { // prevent IE "feature": http://dev.rubyonrails.org/ticket/2707
              parentElement.innerHTML = "<" +elementName + " " +
                attrs + "></" + elementName + ">";
            } catch(e) {}
            element = parentElement.firstChild || null;
            // workaround firefox 1.0.X bug
            if(!element) {
              element = document.createElement(elementName);
              for(attr in arguments[1]) 
                element[attr == 'class' ? 'className' : attr] = arguments[1][attr];
            }
            if(element.tagName.toUpperCase() != elementName)
              element = parentElement.getElementsByTagName(elementName)[0];
          }
        } 

    // text, or array of children
    if(arguments[2])
      this._children(element, arguments[2]);

     return element;
  },
  _text: function(text) {
     return document.createTextNode(text);
  },

  ATTR_MAP: {
    'className': 'class',
    'htmlFor': 'for'
  },

  _attributes: function(attributes) {
    var attrs = [];
    for(attribute in attributes)
      attrs.push((attribute in this.ATTR_MAP ? this.ATTR_MAP[attribute] : attribute) +
          '="' + attributes[attribute].toString().escapeHTML().gsub(/"/,'&quot;') + '"');
    return attrs.join(" ");
  },
  _children: function(element, children) {
    if(children.tagName) {
      element.appendChild(children);
      return;
    }
    if(typeof children=='object') { // array can hold nodes and text
      children.flatten().each( function(e) {
        if(typeof e=='object')
          element.appendChild(e)
        else
          if(Builder._isStringOrNumber(e))
            element.appendChild(Builder._text(e));
      });
    } else
      if(Builder._isStringOrNumber(children))
        element.appendChild(Builder._text(children));
  },
  _isStringOrNumber: function(param) {
    return(typeof param=='string' || typeof param=='number');
  },
  build: function(html) {
    var element = this.node('div');
    $(element).update(html.strip());
    return element.down();
  },
  dump: function(scope) { 
    if(typeof scope != 'object' && typeof scope != 'function') scope = window; //global scope 
  
    var tags = ("A ABBR ACRONYM ADDRESS APPLET AREA B BASE BASEFONT BDO BIG BLOCKQUOTE BODY " +
      "BR BUTTON CAPTION CENTER CITE CODE COL COLGROUP DD DEL DFN DIR DIV DL DT EM FIELDSET " +
      "FONT FORM FRAME FRAMESET H1 H2 H3 H4 H5 H6 HEAD HR HTML I IFRAME IMG INPUT INS ISINDEX "+
      "KBD LABEL LEGEND LI LINK MAP MENU META NOFRAMES NOSCRIPT OBJECT OL OPTGROUP OPTION P "+
      "PARAM PRE Q S SAMP SCRIPT SELECT SMALL SPAN STRIKE STRONG STYLE SUB SUP TABLE TBODY TD "+
      "TEXTAREA TFOOT TH THEAD TITLE TR TT U UL VAR").split(/\s+/);
  
    tags.each( function(tag){ 
      scope[tag] = function() { 
        return Builder.node.apply(Builder, [tag].concat($A(arguments)));  
      } 
    });
  }
}


function htmlEntityDecode( string, quote_style ) {
    var histogram = {}, symbol = '', tmp_str = '', entity = '';
    tmp_str = string.toString();
    
    if (false === (histogram = get_html_translation_table('HTML_ENTITIES', quote_style))) {
        return false;
    }

    delete(histogram['&']);
    histogram['&'] = '&amp;';
 
    for (symbol in histogram) {
        entity = histogram[symbol];
        tmp_str = tmp_str.split(entity).join(symbol);
    }
    
    return tmp_str;
};function get_html_translation_table(table, quote_style) {
    var entities = {}, histogram = {}, decimal = 0, symbol = '';
    var constMappingTable = {}, constMappingQuoteStyle = {};
    var useTable = {}, useQuoteStyle = {};
    
    useTable      = (table ? table.toUpperCase() : 'HTML_SPECIALCHARS');
    useQuoteStyle = (quote_style ? quote_style.toUpperCase() : 'ENT_COMPAT');
    
    // Translate arguments
    constMappingTable[0]      = 'HTML_SPECIALCHARS';
    constMappingTable[1]      = 'HTML_ENTITIES';
    constMappingQuoteStyle[0] = 'ENT_NOQUOTES';
    constMappingQuoteStyle[2] = 'ENT_COMPAT';
    constMappingQuoteStyle[3] = 'ENT_QUOTES';
    
    // Map numbers to strings for compatibilty with PHP constants
    if (!isNaN(useTable)) {
        useTable = constMappingTable[useTable];
    }
    if (!isNaN(useQuoteStyle)) {
        useQuoteStyle = constMappingQuoteStyle[useQuoteStyle];
    }
 
    if (useTable == 'HTML_SPECIALCHARS') {
        // ascii decimals for better compatibility
        entities['38'] = '&amp;';
        if (useQuoteStyle != 'ENT_NOQUOTES') {
            entities['34'] = '&quot;';
        }
        if (useQuoteStyle == 'ENT_QUOTES') {
            entities['39'] = '&#039;';
        }
        entities['60'] = '&lt;';
        entities['62'] = '&gt;';
    } else if (useTable == 'HTML_ENTITIES') {
        // ascii decimals for better compatibility
      entities['38']  = '&amp;';
        if (useQuoteStyle != 'ENT_NOQUOTES') {
            entities['34'] = '&quot;';
        }
        if (useQuoteStyle == 'ENT_QUOTES') {
            entities['39'] = '&#039;';
        }
      entities['60']  = '&lt;';
      entities['62']  = '&gt;';
      entities['160'] = '&nbsp;';
      entities['161'] = '&iexcl;';
      entities['162'] = '&cent;';
      entities['163'] = '&pound;';
      entities['164'] = '&curren;';
      entities['165'] = '&yen;';
      entities['166'] = '&brvbar;';
      entities['167'] = '&sect;';
      entities['168'] = '&uml;';
      entities['169'] = '&copy;';
      entities['170'] = '&ordf;';
      entities['171'] = '&laquo;';
      entities['172'] = '&not;';
      entities['173'] = '&shy;';
      entities['174'] = '&reg;';
      entities['175'] = '&macr;';
      entities['176'] = '&deg;';
      entities['177'] = '&plusmn;';
      entities['178'] = '&sup2;';
      entities['179'] = '&sup3;';
      entities['180'] = '&acute;';
      entities['181'] = '&micro;';
      entities['182'] = '&para;';
      entities['183'] = '&middot;';
      entities['184'] = '&cedil;';
      entities['185'] = '&sup1;';
      entities['186'] = '&ordm;';
      entities['187'] = '&raquo;';
      entities['188'] = '&frac14;';
      entities['189'] = '&frac12;';
      entities['190'] = '&frac34;';
      entities['191'] = '&iquest;';
      entities['192'] = '&Agrave;';
      entities['193'] = '&Aacute;';
      entities['194'] = '&Acirc;';
      entities['195'] = '&Atilde;';
      entities['196'] = '&Auml;';
      entities['197'] = '&Aring;';
      entities['198'] = '&AElig;';
      entities['199'] = '&Ccedil;';
      entities['200'] = '&Egrave;';
      entities['201'] = '&Eacute;';
      entities['202'] = '&Ecirc;';
      entities['203'] = '&Euml;';
      entities['204'] = '&Igrave;';
      entities['205'] = '&Iacute;';
      entities['206'] = '&Icirc;';
      entities['207'] = '&Iuml;';
      entities['208'] = '&ETH;';
      entities['209'] = '&Ntilde;';
      entities['210'] = '&Ograve;';
      entities['211'] = '&Oacute;';
      entities['212'] = '&Ocirc;';
      entities['213'] = '&Otilde;';
      entities['214'] = '&Ouml;';
      entities['215'] = '&times;';
      entities['216'] = '&Oslash;';
      entities['217'] = '&Ugrave;';
      entities['218'] = '&Uacute;';
      entities['219'] = '&Ucirc;';
      entities['220'] = '&Uuml;';
      entities['221'] = '&Yacute;';
      entities['222'] = '&THORN;';
      entities['223'] = '&szlig;';
      entities['224'] = '&agrave;';
      entities['225'] = '&aacute;';
      entities['226'] = '&acirc;';
      entities['227'] = '&atilde;';
      entities['228'] = '&auml;';
      entities['229'] = '&aring;';
      entities['230'] = '&aelig;';
      entities['231'] = '&ccedil;';
      entities['232'] = '&egrave;';
      entities['233'] = '&eacute;';
      entities['234'] = '&ecirc;';
      entities['235'] = '&euml;';
      entities['236'] = '&igrave;';
      entities['237'] = '&iacute;';
      entities['238'] = '&icirc;';
      entities['239'] = '&iuml;';
      entities['240'] = '&eth;';
      entities['241'] = '&ntilde;';
      entities['242'] = '&ograve;';
      entities['243'] = '&oacute;';
      entities['244'] = '&ocirc;';
      entities['245'] = '&otilde;';
      entities['246'] = '&ouml;';
      entities['247'] = '&divide;';
      entities['248'] = '&oslash;';
      entities['249'] = '&ugrave;';
      entities['250'] = '&uacute;';
      entities['251'] = '&ucirc;';
      entities['252'] = '&uuml;';
      entities['253'] = '&yacute;';
      entities['254'] = '&thorn;';
      entities['255'] = '&yuml;';
    } else {
        throw Error("Table: "+useTable+' not supported');
        return false;
    }
    
    // ascii decimals to real symbols
    for (decimal in entities) {
        symbol = String.fromCharCode(decimal);
        histogram[symbol] = entities[decimal];
    }
    
    return histogram;
};Element.addMethods({
	getSetting: function(elmnt, name) {
		var value;
		elmnt.childElements().each(function(el){
			if (
				!value
				&& el.getAttribute("name") == name
			) {
				value = el.value;
			}
		});
		return value;
	}
});



var WaitMask = window.WaitMask = {
	_setOptions: function(options) {
		if ( typeof options != "object" ) {
			options = {};
		}
		if ( !options.id ) {
			options.id = "";
		}
		return options;
	},
	open: function(options) {
		options = this._setOptions(options);
		if ( $(options.id+"WaitMask") ) {
			return;
		}
		$$("html")[0].observe("keydown", function(e){
			if ( e.keyCode == 27 ) {
				WaitMask.close({
					id: options.id
				});
			}
		});
		if ( typeof options.zIndex == "undefined" ) {
			options.zIndex = "90001";
		}
		if ( typeof options.parentNode == "undefined" ) {
			options.parentNode = document.body;
		}
		if ( typeof options.bgColor == "undefined" ) {
			options.bgColor = "transparent";
		}
		if ( typeof options.position == "undefined" ) {
			options.position = "fixed";
		}
		if ( typeof options.bgImage == "undefined" ) {
			options.bgImage = "none";
		} else {
			options.bgImage = "url("+options.bgImage+")";
		}
		if ( typeof options.bgRepeat == "undefined" ) {
			options.bgRepeat = "repeat";
		}
		if ( typeof options.bgPosition == "undefined" ) {
			options.bgPosition = "0px 0px";
		}
		if ( options.appear ) {
			var display = "none";
		} else {
			var display = "block";
		}
		var node = Builder.build('<div id="'+options.id+'WaitMask" class="wMask"></div>');
		
		var maskWidth = document.viewport.getWidth()
		var maskHeight = document.viewport.getHeight()
		node.setStyle({
			display: display,
			position: options.position,
			overflow: "hidden",
			zIndex: options.zIndex,
			left: "0px",
			top: "0px",
			width: (maskWidth)+"px",
			height: (maskHeight)+"px",
			backgroundColor: options.bgColor,
			backgroundImage: options.bgImage,
			backgroundRepeat: options.bgRepeat,
			backgroundPosition: options.bgPosition,
		});
		if (
			options.opacity
			&& !options.appear
		) {
			node.setOpacity(options.opacity);
		} else {
			if ( typeof options.opacity != "number" ) {
				options.opacity = 1;
			}
		}
		options.parentNode.appendChild(node);
		
		if ( node.previous() ) {
			var zindex_p = node.previous().getStyle("zIndex");
			if ( zindex_p ) {
				if ( options.zIndex <= zindex_p ) {
					node.setStyle({
						zIndex: parseInt(zindex_p)+1
					});
				}
			}
		}
		if ( options.appear ) {
			new Effect.Appear(node, {
				to: options.opacity,
				duration: options.appear
			});
		}
		return node;
	}, 
	exists: function(options) {
		options = this._setOptions(options);
		if ( el = $(options.id+"WaitMask") ) {
			return el;
		} else {
			return '';
		}
	},
	close: function(options) {
		options = this._setOptions(options);
		if ( el = $(options.id+"WaitMask") ) {
			if ( options.fade ) {
				new Effect.Fade(el, {
					duration: options.fade,
					afterFinish: function() {
						el.remove();
					}
				});
			} else {
				el.remove();
			}
		}
	}
};// script.aculo.us effects.js v1.8.1, Thu Jan 03 22:07:12 -0500 2008

// Copyright (c) 2005-2007 Thomas Fuchs (http://script.aculo.us, http://mir.aculo.us)
// Contributors:
//  Justin Palmer (http://encytemedia.com/)
//  Mark Pilgrim (http://diveintomark.org/)
//  Martin Bialasinki
// 
// script.aculo.us is freely distributable under the terms of an MIT-style license.
// For details, see the script.aculo.us web site: http://script.aculo.us/ 

// converts rgb() and #xxx to #xxxxxx format,  
// returns self (or first argument) if not convertable  
String.prototype.parseColor = function() {  
  var color = '#';
  if (this.slice(0,4) == 'rgb(') {  
    var cols = this.slice(4,this.length-1).split(',');  
    var i=0; do { color += parseInt(cols[i]).toColorPart() } while (++i<3);  
  } else {  
    if (this.slice(0,1) == '#') {  
      if (this.length==4) for(var i=1;i<4;i++) color += (this.charAt(i) + this.charAt(i)).toLowerCase();  
      if (this.length==7) color = this.toLowerCase();  
    }  
  }  
  return (color.length==7 ? color : (arguments[0] || this));  
};

/*--------------------------------------------------------------------------*/

Element.collectTextNodes = function(element) {  
  return $A($(element).childNodes).collect( function(node) {
    return (node.nodeType==3 ? node.nodeValue : 
      (node.hasChildNodes() ? Element.collectTextNodes(node) : ''));
  }).flatten().join('');
};

Element.collectTextNodesIgnoreClass = function(element, className) {  
  return $A($(element).childNodes).collect( function(node) {
    return (node.nodeType==3 ? node.nodeValue : 
      ((node.hasChildNodes() && !Element.hasClassName(node,className)) ? 
        Element.collectTextNodesIgnoreClass(node, className) : ''));
  }).flatten().join('');
};

Element.setContentZoom = function(element, percent) {
  element = $(element);  
  element.setStyle({fontSize: (percent/100) + 'em'});   
  if (Prototype.Browser.WebKit) window.scrollBy(0,0);
  return element;
};

Element.getInlineOpacity = function(element){
  return $(element).style.opacity || '';
};

Element.forceRerendering = function(element) {
  try {
    element = $(element);
    var n = document.createTextNode(' ');
    element.appendChild(n);
    element.removeChild(n);
  } catch(e) { }
};

/*--------------------------------------------------------------------------*/

var Effect = {
  _elementDoesNotExistError: {
    name: 'ElementDoesNotExistError',
    message: 'The specified DOM element does not exist, but is required for this effect to operate'
  },
  Transitions: {
    linear: Prototype.K,
    sinoidal: function(pos) {
      return (-Math.cos(pos*Math.PI)/2) + 0.5;
    },
    reverse: function(pos) {
      return 1-pos;
    },
    flicker: function(pos) {
      var pos = ((-Math.cos(pos*Math.PI)/4) + 0.75) + Math.random()/4;
      return pos > 1 ? 1 : pos;
    },
    wobble: function(pos) {
      return (-Math.cos(pos*Math.PI*(9*pos))/2) + 0.5;
    },
    pulse: function(pos, pulses) { 
      pulses = pulses || 5; 
      return (
        ((pos % (1/pulses)) * pulses).round() == 0 ? 
              ((pos * pulses * 2) - (pos * pulses * 2).floor()) : 
          1 - ((pos * pulses * 2) - (pos * pulses * 2).floor())
        );
    },
    spring: function(pos) { 
      return 1 - (Math.cos(pos * 4.5 * Math.PI) * Math.exp(-pos * 6)); 
    },
    none: function(pos) {
      return 0;
    },
    full: function(pos) {
      return 1;
    }
  },
  DefaultOptions: {
    duration:   1.0,   // seconds
    fps:        100,   // 100= assume 66fps max.
    sync:       false, // true for combining
    from:       0.0,
    to:         1.0,
    delay:      0.0,
    queue:      'parallel'
  },
  tagifyText: function(element) {
    var tagifyStyle = 'position:relative';
    if (Prototype.Browser.IE) tagifyStyle += ';zoom:1';
    
    element = $(element);
    $A(element.childNodes).each( function(child) {
      if (child.nodeType==3) {
        child.nodeValue.toArray().each( function(character) {
          element.insertBefore(
            new Element('span', {style: tagifyStyle}).update(
              character == ' ' ? String.fromCharCode(160) : character), 
              child);
        });
        Element.remove(child);
      }
    });
  },
  multiple: function(element, effect) {
    var elements;
    if (((typeof element == 'object') || 
        Object.isFunction(element)) && 
       (element.length))
      elements = element;
    else
      elements = $(element).childNodes;
      
    var options = Object.extend({
      speed: 0.1,
      delay: 0.0
    }, arguments[2] || { });
    var masterDelay = options.delay;

    $A(elements).each( function(element, index) {
      new effect(element, Object.extend(options, { delay: index * options.speed + masterDelay }));
    });
  },
  PAIRS: {
    'slide':  ['SlideDown','SlideUp'],
    'blind':  ['BlindDown','BlindUp'],
    'appear': ['Appear','Fade']
  },
  toggle: function(element, effect) {
    element = $(element);
    effect = (effect || 'appear').toLowerCase();
    var options = Object.extend({
      queue: { position:'end', scope:(element.id || 'global'), limit: 1 }
    }, arguments[2] || { });
    Effect[element.visible() ? 
      Effect.PAIRS[effect][1] : Effect.PAIRS[effect][0]](element, options);
  }
};

Effect.DefaultOptions.transition = Effect.Transitions.sinoidal;

/* ------------- core effects ------------- */

Effect.ScopedQueue = Class.create(Enumerable, {
  initialize: function() {
    this.effects  = [];
    this.interval = null;    
  },
  _each: function(iterator) {
    this.effects._each(iterator);
  },
  add: function(effect) {
    var timestamp = new Date().getTime();
    
    var position = Object.isString(effect.options.queue) ? 
      effect.options.queue : effect.options.queue.position;
    
    switch(position) {
      case 'front':
        // move unstarted effects after this effect  
        this.effects.findAll(function(e){ return e.state=='idle' }).each( function(e) {
            e.startOn  += effect.finishOn;
            e.finishOn += effect.finishOn;
          });
        break;
      case 'with-last':
        timestamp = this.effects.pluck('startOn').max() || timestamp;
        break;
      case 'end':
        // start effect after last queued effect has finished
        timestamp = this.effects.pluck('finishOn').max() || timestamp;
        break;
    }
    
    effect.startOn  += timestamp;
    effect.finishOn += timestamp;

    if (!effect.options.queue.limit || (this.effects.length < effect.options.queue.limit))
      this.effects.push(effect);
    
    if (!this.interval)
      this.interval = setInterval(this.loop.bind(this), 15);
  },
  remove: function(effect) {
    this.effects = this.effects.reject(function(e) { return e==effect });
    if (this.effects.length == 0) {
      clearInterval(this.interval);
      this.interval = null;
    }
  },
  loop: function() {
    var timePos = new Date().getTime();
    for(var i=0, len=this.effects.length;i<len;i++) 
      this.effects[i] && this.effects[i].loop(timePos);
  }
});

Effect.Queues = {
  instances: $H(),
  get: function(queueName) {
    if (!Object.isString(queueName)) return queueName;
    
    return this.instances.get(queueName) ||
      this.instances.set(queueName, new Effect.ScopedQueue());
  }
};
Effect.Queue = Effect.Queues.get('global');

Effect.Base = Class.create({
  position: null,
  start: function(options) {
    function codeForEvent(options,eventName){
      return (
        (options[eventName+'Internal'] ? 'this.options.'+eventName+'Internal(this);' : '') +
        (options[eventName] ? 'this.options.'+eventName+'(this);' : '')
      );
    }
    if (options && options.transition === false) options.transition = Effect.Transitions.linear;
    this.options      = Object.extend(Object.extend({ },Effect.DefaultOptions), options || { });
    this.currentFrame = 0;
    this.state        = 'idle';
    this.startOn      = this.options.delay*1000;
    this.finishOn     = this.startOn+(this.options.duration*1000);
    this.fromToDelta  = this.options.to-this.options.from;
    this.totalTime    = this.finishOn-this.startOn;
    this.totalFrames  = this.options.fps*this.options.duration;
    
    eval('this.render = function(pos){ '+
      'if (this.state=="idle"){this.state="running";'+
      codeForEvent(this.options,'beforeSetup')+
      (this.setup ? 'this.setup();':'')+ 
      codeForEvent(this.options,'afterSetup')+
      '};if (this.state=="running"){'+
      'pos=this.options.transition(pos)*'+this.fromToDelta+'+'+this.options.from+';'+
      'this.position=pos;'+
      codeForEvent(this.options,'beforeUpdate')+
      (this.update ? 'this.update(pos);':'')+
      codeForEvent(this.options,'afterUpdate')+
      '}}');
    
    this.event('beforeStart');
    if (!this.options.sync)
      Effect.Queues.get(Object.isString(this.options.queue) ? 
        'global' : this.options.queue.scope).add(this);
  },
  loop: function(timePos) {
    if (timePos >= this.startOn) {
      if (timePos >= this.finishOn) {
        this.render(1.0);
        this.cancel();
        this.event('beforeFinish');
        if (this.finish) this.finish(); 
        this.event('afterFinish');
        return;  
      }
      var pos   = (timePos - this.startOn) / this.totalTime,
          frame = (pos * this.totalFrames).round();
      if (frame > this.currentFrame) {
        this.render(pos);
        this.currentFrame = frame;
      }
    }
  },
  cancel: function() {
    if (!this.options.sync)
      Effect.Queues.get(Object.isString(this.options.queue) ? 
        'global' : this.options.queue.scope).remove(this);
    this.state = 'finished';
  },
  event: function(eventName) {
    if (this.options[eventName + 'Internal']) this.options[eventName + 'Internal'](this);
    if (this.options[eventName]) this.options[eventName](this);
  },
  inspect: function() {
    var data = $H();
    for(property in this)
      if (!Object.isFunction(this[property])) data.set(property, this[property]);
    return '#<Effect:' + data.inspect() + ',options:' + $H(this.options).inspect() + '>';
  }
});

Effect.Parallel = Class.create(Effect.Base, {
  initialize: function(effects) {
    this.effects = effects || [];
    this.start(arguments[1]);
  },
  update: function(position) {
    this.effects.invoke('render', position);
  },
  finish: function(position) {
    this.effects.each( function(effect) {
      effect.render(1.0);
      effect.cancel();
      effect.event('beforeFinish');
      if (effect.finish) effect.finish(position);
      effect.event('afterFinish');
    });
  }
});

Effect.Tween = Class.create(Effect.Base, {
  initialize: function(object, from, to) {
    object = Object.isString(object) ? $(object) : object;
    var args = $A(arguments), method = args.last(), 
      options = args.length == 5 ? args[3] : null;
    this.method = Object.isFunction(method) ? method.bind(object) :
      Object.isFunction(object[method]) ? object[method].bind(object) : 
      function(value) { object[method] = value };
    this.start(Object.extend({ from: from, to: to }, options || { }));
  },
  update: function(position) {
    this.method(position);
  }
});

Effect.Event = Class.create(Effect.Base, {
  initialize: function() {
    this.start(Object.extend({ duration: 0 }, arguments[0] || { }));
  },
  update: Prototype.emptyFunction
});

Effect.Opacity = Class.create(Effect.Base, {
  initialize: function(element) {
    this.element = $(element);
    if (!this.element) throw(Effect._elementDoesNotExistError);
    // make this work on IE on elements without 'layout'
    if (Prototype.Browser.IE && (!this.element.currentStyle.hasLayout))
      this.element.setStyle({zoom: 1});
    var options = Object.extend({
      from: this.element.getOpacity() || 0.0,
      to:   1.0
    }, arguments[1] || { });
    this.start(options);
  },
  update: function(position) {
    this.element.setOpacity(position);
  }
});

Effect.Move = Class.create(Effect.Base, {
  initialize: function(element) {
    this.element = $(element);
    if (!this.element) throw(Effect._elementDoesNotExistError);
    var options = Object.extend({
      x:    0,
      y:    0,
      mode: 'relative'
    }, arguments[1] || { });
    this.start(options);
  },
  setup: function() {
    this.element.makePositioned();
    this.originalLeft = parseFloat(this.element.getStyle('left') || '0');
    this.originalTop  = parseFloat(this.element.getStyle('top')  || '0');
    if (this.options.mode == 'absolute') {
      this.options.x = this.options.x - this.originalLeft;
      this.options.y = this.options.y - this.originalTop;
    }
  },
  update: function(position) {
    this.element.setStyle({
      left: (this.options.x  * position + this.originalLeft).round() + 'px',
      top:  (this.options.y  * position + this.originalTop).round()  + 'px'
    });
  }
});

// for backwards compatibility
Effect.MoveBy = function(element, toTop, toLeft) {
  return new Effect.Move(element, 
    Object.extend({ x: toLeft, y: toTop }, arguments[3] || { }));
};

Effect.Scale = Class.create(Effect.Base, {
  initialize: function(element, percent) {
    this.element = $(element);
    if (!this.element) throw(Effect._elementDoesNotExistError);
    var options = Object.extend({
      scaleX: true,
      scaleY: true,
      scaleContent: true,
      scaleFromCenter: false,
      scaleMode: 'box',        // 'box' or 'contents' or { } with provided values
      scaleFrom: 100.0,
      scaleTo:   percent
    }, arguments[2] || { });
    this.start(options);
  },
  setup: function() {
    this.restoreAfterFinish = this.options.restoreAfterFinish || false;
    this.elementPositioning = this.element.getStyle('position');
    
    this.originalStyle = { };
    ['top','left','width','height','fontSize'].each( function(k) {
      this.originalStyle[k] = this.element.style[k];
    }.bind(this));
      
    this.originalTop  = this.element.offsetTop;
    this.originalLeft = this.element.offsetLeft;
    
    var fontSize = this.element.getStyle('font-size') || '100%';
    ['em','px','%','pt'].each( function(fontSizeType) {
      if (fontSize.indexOf(fontSizeType)>0) {
        this.fontSize     = parseFloat(fontSize);
        this.fontSizeType = fontSizeType;
      }
    }.bind(this));
    
    this.factor = (this.options.scaleTo - this.options.scaleFrom)/100;
    
    this.dims = null;
    if (this.options.scaleMode=='box')
      this.dims = [this.element.offsetHeight, this.element.offsetWidth];
    if (/^content/.test(this.options.scaleMode))
      this.dims = [this.element.scrollHeight, this.element.scrollWidth];
    if (!this.dims)
      this.dims = [this.options.scaleMode.originalHeight,
                   this.options.scaleMode.originalWidth];
  },
  update: function(position) {
    var currentScale = (this.options.scaleFrom/100.0) + (this.factor * position);
    if (this.options.scaleContent && this.fontSize)
      this.element.setStyle({fontSize: this.fontSize * currentScale + this.fontSizeType });
    this.setDimensions(this.dims[0] * currentScale, this.dims[1] * currentScale);
  },
  finish: function(position) {
    if (this.restoreAfterFinish) this.element.setStyle(this.originalStyle);
  },
  setDimensions: function(height, width) {
    var d = { };
    if (this.options.scaleX) d.width = width.round() + 'px';
    if (this.options.scaleY) d.height = height.round() + 'px';
    if (this.options.scaleFromCenter) {
      var topd  = (height - this.dims[0])/2;
      var leftd = (width  - this.dims[1])/2;
      if (this.elementPositioning == 'absolute') {
        if (this.options.scaleY) d.top = this.originalTop-topd + 'px';
        if (this.options.scaleX) d.left = this.originalLeft-leftd + 'px';
      } else {
        if (this.options.scaleY) d.top = -topd + 'px';
        if (this.options.scaleX) d.left = -leftd + 'px';
      }
    }
    this.element.setStyle(d);
  }
});

Effect.Highlight = Class.create(Effect.Base, {
  initialize: function(element) {
    this.element = $(element);
    if (!this.element) throw(Effect._elementDoesNotExistError);
    var options = Object.extend({ startcolor: '#ffff99' }, arguments[1] || { });
    this.start(options);
  },
  setup: function() {
    // Prevent executing on elements not in the layout flow
    if (this.element.getStyle('display')=='none') { this.cancel(); return; }
    // Disable background image during the effect
    this.oldStyle = { };
    if (!this.options.keepBackgroundImage) {
      this.oldStyle.backgroundImage = this.element.getStyle('background-image');
      this.element.setStyle({backgroundImage: 'none'});
    }
    if (!this.options.endcolor)
      this.options.endcolor = this.element.getStyle('background-color').parseColor('#ffffff');
    if (!this.options.restorecolor)
      this.options.restorecolor = this.element.getStyle('background-color');
    // init color calculations
    this._base  = $R(0,2).map(function(i){ return parseInt(this.options.startcolor.slice(i*2+1,i*2+3),16) }.bind(this));
    this._delta = $R(0,2).map(function(i){ return parseInt(this.options.endcolor.slice(i*2+1,i*2+3),16)-this._base[i] }.bind(this));
  },
  update: function(position) {
    this.element.setStyle({backgroundColor: $R(0,2).inject('#',function(m,v,i){
      return m+((this._base[i]+(this._delta[i]*position)).round().toColorPart()); }.bind(this)) });
  },
  finish: function() {
    this.element.setStyle(Object.extend(this.oldStyle, {
      backgroundColor: this.options.restorecolor
    }));
  }
});

Effect.ScrollTo = function(element) {
  var options = arguments[1] || { },
    scrollOffsets = document.viewport.getScrollOffsets(),
    elementOffsets = $(element).cumulativeOffset(),
    max = (window.height || document.body.scrollHeight) - document.viewport.getHeight();  

  if (options.offset) elementOffsets[1] += options.offset;

  return new Effect.Tween(null,
    scrollOffsets.top,
    elementOffsets[1] > max ? max : elementOffsets[1],
    options,
    function(p){ scrollTo(scrollOffsets.left, p.round()) }
  );
};

/* ------------- combination effects ------------- */

Effect.Fade = function(element) {
  element = $(element);
  var oldOpacity = element.getInlineOpacity();
  var options = Object.extend({
    from: element.getOpacity() || 1.0,
    to:   0.0,
    afterFinishInternal: function(effect) { 
      if (effect.options.to!=0) return;
      effect.element.hide().setStyle({opacity: oldOpacity}); 
    }
  }, arguments[1] || { });
  return new Effect.Opacity(element,options);
};

Effect.Appear = function(element) {
  element = $(element);
  var options = Object.extend({
  from: (element.getStyle('display') == 'none' ? 0.0 : element.getOpacity() || 0.0),
  to:   1.0,
  // force Safari to render floated elements properly
  afterFinishInternal: function(effect) {
    effect.element.forceRerendering();
  },
  beforeSetup: function(effect) {
    effect.element.setOpacity(effect.options.from).show(); 
  }}, arguments[1] || { });
  return new Effect.Opacity(element,options);
};

Effect.Puff = function(element) {
  element = $(element);
  var oldStyle = { 
    opacity: element.getInlineOpacity(), 
    position: element.getStyle('position'),
    top:  element.style.top,
    left: element.style.left,
    width: element.style.width,
    height: element.style.height
  };
  return new Effect.Parallel(
   [ new Effect.Scale(element, 200, 
      { sync: true, scaleFromCenter: true, scaleContent: true, restoreAfterFinish: true }), 
     new Effect.Opacity(element, { sync: true, to: 0.0 } ) ], 
     Object.extend({ duration: 1.0, 
      beforeSetupInternal: function(effect) {
        Position.absolutize(effect.effects[0].element)
      },
      afterFinishInternal: function(effect) {
         effect.effects[0].element.hide().setStyle(oldStyle); }
     }, arguments[1] || { })
   );
};

Effect.BlindUp = function(element) {
  element = $(element);
  element.makeClipping();
  return new Effect.Scale(element, 0,
    Object.extend({ scaleContent: false, 
      scaleX: false, 
      restoreAfterFinish: true,
      afterFinishInternal: function(effect) {
        effect.element.hide().undoClipping();
      } 
    }, arguments[1] || { })
  );
};

Effect.BlindDown = function(element) {
  element = $(element);
  var elementDimensions = element.getDimensions();
  return new Effect.Scale(element, 100, Object.extend({ 
    scaleContent: false, 
    scaleX: false,
    scaleFrom: 0,
    scaleMode: {originalHeight: elementDimensions.height, originalWidth: elementDimensions.width},
    restoreAfterFinish: true,
    afterSetup: function(effect) {
      effect.element.makeClipping().setStyle({height: '0px'}).show(); 
    },  
    afterFinishInternal: function(effect) {
      effect.element.undoClipping();
    }
  }, arguments[1] || { }));
};

Effect.SwitchOff = function(element) {
  element = $(element);
  var oldOpacity = element.getInlineOpacity();
  return new Effect.Appear(element, Object.extend({
    duration: 0.4,
    from: 0,
    transition: Effect.Transitions.flicker,
    afterFinishInternal: function(effect) {
      new Effect.Scale(effect.element, 1, { 
        duration: 0.3, scaleFromCenter: true,
        scaleX: false, scaleContent: false, restoreAfterFinish: true,
        beforeSetup: function(effect) { 
          effect.element.makePositioned().makeClipping();
        },
        afterFinishInternal: function(effect) {
          effect.element.hide().undoClipping().undoPositioned().setStyle({opacity: oldOpacity});
        }
      })
    }
  }, arguments[1] || { }));
};

Effect.DropOut = function(element) {
  element = $(element);
  var oldStyle = {
    top: element.getStyle('top'),
    left: element.getStyle('left'),
    opacity: element.getInlineOpacity() };
  return new Effect.Parallel(
    [ new Effect.Move(element, {x: 0, y: 100, sync: true }), 
      new Effect.Opacity(element, { sync: true, to: 0.0 }) ],
    Object.extend(
      { duration: 0.5,
        beforeSetup: function(effect) {
          effect.effects[0].element.makePositioned(); 
        },
        afterFinishInternal: function(effect) {
          effect.effects[0].element.hide().undoPositioned().setStyle(oldStyle);
        } 
      }, arguments[1] || { }));
};

Effect.Shake = function(element) {
  element = $(element);
  var options = Object.extend({
    distance: 20,
    duration: 0.5
  }, arguments[1] || {});
  var distance = parseFloat(options.distance);
  var split = parseFloat(options.duration) / 10.0;
  var oldStyle = {
    top: element.getStyle('top'),
    left: element.getStyle('left') };
    return new Effect.Move(element,
      { x:  distance, y: 0, duration: split, afterFinishInternal: function(effect) {
    new Effect.Move(effect.element,
      { x: -distance*2, y: 0, duration: split*2,  afterFinishInternal: function(effect) {
    new Effect.Move(effect.element,
      { x:  distance*2, y: 0, duration: split*2,  afterFinishInternal: function(effect) {
    new Effect.Move(effect.element,
      { x: -distance*2, y: 0, duration: split*2,  afterFinishInternal: function(effect) {
    new Effect.Move(effect.element,
      { x:  distance*2, y: 0, duration: split*2,  afterFinishInternal: function(effect) {
    new Effect.Move(effect.element,
      { x: -distance, y: 0, duration: split, afterFinishInternal: function(effect) {
        effect.element.undoPositioned().setStyle(oldStyle);
  }}) }}) }}) }}) }}) }});
};

Effect.SlideDown = function(element) {
  element = $(element).cleanWhitespace();
  // SlideDown need to have the content of the element wrapped in a container element with fixed height!
  var oldInnerBottom = element.down().getStyle('bottom');
  var elementDimensions = element.getDimensions();
  return new Effect.Scale(element, 100, Object.extend({ 
    scaleContent: false, 
    scaleX: false, 
    scaleFrom: window.opera ? 0 : 1,
    scaleMode: {originalHeight: elementDimensions.height, originalWidth: elementDimensions.width},
    restoreAfterFinish: true,
    afterSetup: function(effect) {
      effect.element.makePositioned();
      effect.element.down().makePositioned();
      if (window.opera) effect.element.setStyle({top: ''});
      effect.element.makeClipping().setStyle({height: '0px'}).show(); 
    },
    afterUpdateInternal: function(effect) {
      effect.element.down().setStyle({bottom:
        (effect.dims[0] - effect.element.clientHeight) + 'px' }); 
    },
    afterFinishInternal: function(effect) {
      effect.element.undoClipping().undoPositioned();
      effect.element.down().undoPositioned().setStyle({bottom: oldInnerBottom}); }
    }, arguments[1] || { })
  );
};

Effect.SlideUp = function(element) {
  element = $(element).cleanWhitespace();
  var oldInnerBottom = element.down().getStyle('bottom');
  var elementDimensions = element.getDimensions();
  return new Effect.Scale(element, window.opera ? 0 : 1,
   Object.extend({ scaleContent: false, 
    scaleX: false, 
    scaleMode: 'box',
    scaleFrom: 100,
    scaleMode: {originalHeight: elementDimensions.height, originalWidth: elementDimensions.width},
    restoreAfterFinish: true,
    afterSetup: function(effect) {
      effect.element.makePositioned();
      effect.element.down().makePositioned();
      if (window.opera) effect.element.setStyle({top: ''});
      effect.element.makeClipping().show();
    },  
    afterUpdateInternal: function(effect) {
      effect.element.down().setStyle({bottom:
        (effect.dims[0] - effect.element.clientHeight) + 'px' });
    },
    afterFinishInternal: function(effect) {
      effect.element.hide().undoClipping().undoPositioned();
      effect.element.down().undoPositioned().setStyle({bottom: oldInnerBottom});
    }
   }, arguments[1] || { })
  );
};

// Bug in opera makes the TD containing this element expand for a instance after finish 
Effect.Squish = function(element) {
  return new Effect.Scale(element, window.opera ? 1 : 0, { 
    restoreAfterFinish: true,
    beforeSetup: function(effect) {
      effect.element.makeClipping(); 
    },  
    afterFinishInternal: function(effect) {
      effect.element.hide().undoClipping(); 
    }
  });
};

Effect.Grow = function(element) {
  element = $(element);
  var options = Object.extend({
    direction: 'center',
    moveTransition: Effect.Transitions.sinoidal,
    scaleTransition: Effect.Transitions.sinoidal,
    opacityTransition: Effect.Transitions.full
  }, arguments[1] || { });
  var oldStyle = {
    top: element.style.top,
    left: element.style.left,
    height: element.style.height,
    width: element.style.width,
    opacity: element.getInlineOpacity() };

  var dims = element.getDimensions();    
  var initialMoveX, initialMoveY;
  var moveX, moveY;
  
  switch (options.direction) {
    case 'top-left':
      initialMoveX = initialMoveY = moveX = moveY = 0; 
      break;
    case 'top-right':
      initialMoveX = dims.width;
      initialMoveY = moveY = 0;
      moveX = -dims.width;
      break;
    case 'bottom-left':
      initialMoveX = moveX = 0;
      initialMoveY = dims.height;
      moveY = -dims.height;
      break;
    case 'bottom-right':
      initialMoveX = dims.width;
      initialMoveY = dims.height;
      moveX = -dims.width;
      moveY = -dims.height;
      break;
    case 'center':
      initialMoveX = dims.width / 2;
      initialMoveY = dims.height / 2;
      moveX = -dims.width / 2;
      moveY = -dims.height / 2;
      break;
  }
  
  return new Effect.Move(element, {
    x: initialMoveX,
    y: initialMoveY,
    duration: 0.01, 
    beforeSetup: function(effect) {
      effect.element.hide().makeClipping().makePositioned();
    },
    afterFinishInternal: function(effect) {
      new Effect.Parallel(
        [ new Effect.Opacity(effect.element, { sync: true, to: 1.0, from: 0.0, transition: options.opacityTransition }),
          new Effect.Move(effect.element, { x: moveX, y: moveY, sync: true, transition: options.moveTransition }),
          new Effect.Scale(effect.element, 100, {
            scaleMode: { originalHeight: dims.height, originalWidth: dims.width }, 
            sync: true, scaleFrom: window.opera ? 1 : 0, transition: options.scaleTransition, restoreAfterFinish: true})
        ], Object.extend({
             beforeSetup: function(effect) {
               effect.effects[0].element.setStyle({height: '0px'}).show(); 
             },
             afterFinishInternal: function(effect) {
               effect.effects[0].element.undoClipping().undoPositioned().setStyle(oldStyle); 
             }
           }, options)
      )
    }
  });
};

Effect.Shrink = function(element) {
  element = $(element);
  var options = Object.extend({
    direction: 'center',
    moveTransition: Effect.Transitions.sinoidal,
    scaleTransition: Effect.Transitions.sinoidal,
    opacityTransition: Effect.Transitions.none
  }, arguments[1] || { });
  var oldStyle = {
    top: element.style.top,
    left: element.style.left,
    height: element.style.height,
    width: element.style.width,
    opacity: element.getInlineOpacity() };

  var dims = element.getDimensions();
  var moveX, moveY;
  
  switch (options.direction) {
    case 'top-left':
      moveX = moveY = 0;
      break;
    case 'top-right':
      moveX = dims.width;
      moveY = 0;
      break;
    case 'bottom-left':
      moveX = 0;
      moveY = dims.height;
      break;
    case 'bottom-right':
      moveX = dims.width;
      moveY = dims.height;
      break;
    case 'center':  
      moveX = dims.width / 2;
      moveY = dims.height / 2;
      break;
  }
  
  return new Effect.Parallel(
    [ new Effect.Opacity(element, { sync: true, to: 0.0, from: 1.0, transition: options.opacityTransition }),
      new Effect.Scale(element, window.opera ? 1 : 0, { sync: true, transition: options.scaleTransition, restoreAfterFinish: true}),
      new Effect.Move(element, { x: moveX, y: moveY, sync: true, transition: options.moveTransition })
    ], Object.extend({            
         beforeStartInternal: function(effect) {
           effect.effects[0].element.makePositioned().makeClipping(); 
         },
         afterFinishInternal: function(effect) {
           effect.effects[0].element.hide().undoClipping().undoPositioned().setStyle(oldStyle); }
       }, options)
  );
};

Effect.Pulsate = function(element) {
  element = $(element);
  var options    = arguments[1] || { };
  var oldOpacity = element.getInlineOpacity();
  var transition = options.transition || Effect.Transitions.sinoidal;
  var reverser   = function(pos){ return transition(1-Effect.Transitions.pulse(pos, options.pulses)) };
  reverser.bind(transition);
  return new Effect.Opacity(element, 
    Object.extend(Object.extend({  duration: 2.0, from: 0,
      afterFinishInternal: function(effect) { effect.element.setStyle({opacity: oldOpacity}); }
    }, options), {transition: reverser}));
};

Effect.Fold = function(element) {
  element = $(element);
  var oldStyle = {
    top: element.style.top,
    left: element.style.left,
    width: element.style.width,
    height: element.style.height };
  element.makeClipping();
  return new Effect.Scale(element, 5, Object.extend({   
    scaleContent: false,
    scaleX: false,
    afterFinishInternal: function(effect) {
    new Effect.Scale(element, 1, { 
      scaleContent: false, 
      scaleY: false,
      afterFinishInternal: function(effect) {
        effect.element.hide().undoClipping().setStyle(oldStyle);
      } });
  }}, arguments[1] || { }));
};

Effect.Morph = Class.create(Effect.Base, {
  initialize: function(element) {
    this.element = $(element);
    if (!this.element) throw(Effect._elementDoesNotExistError);
    var options = Object.extend({
      style: { }
    }, arguments[1] || { });
    
    if (!Object.isString(options.style)) this.style = $H(options.style);
    else {
      if (options.style.include(':'))
        this.style = options.style.parseStyle();
      else {
        this.element.addClassName(options.style);
        this.style = $H(this.element.getStyles());
        this.element.removeClassName(options.style);
        var css = this.element.getStyles();
        this.style = this.style.reject(function(style) {
          return style.value == css[style.key];
        });
        options.afterFinishInternal = function(effect) {
          effect.element.addClassName(effect.options.style);
          effect.transforms.each(function(transform) {
            effect.element.style[transform.style] = '';
          });
        }
      }
    }
    this.start(options);
  },
  
  setup: function(){
    function parseColor(color){
      if (!color || ['rgba(0, 0, 0, 0)','transparent'].include(color)) color = '#ffffff';
      color = color.parseColor();
      return $R(0,2).map(function(i){
        return parseInt( color.slice(i*2+1,i*2+3), 16 ) 
      });
    }
    this.transforms = this.style.map(function(pair){
      var property = pair[0], value = pair[1], unit = null;

      if (value.parseColor('#zzzzzz') != '#zzzzzz') {
        value = value.parseColor();
        unit  = 'color';
      } else if (property == 'opacity') {
        value = parseFloat(value);
        if (Prototype.Browser.IE && (!this.element.currentStyle.hasLayout))
          this.element.setStyle({zoom: 1});
      } else if (Element.CSS_LENGTH.test(value)) {
          var components = value.match(/^([\+\-]?[0-9\.]+)(.*)$/);
          value = parseFloat(components[1]);
          unit = (components.length == 3) ? components[2] : null;
      }

      var originalValue = this.element.getStyle(property);
      return { 
        style: property.camelize(), 
        originalValue: unit=='color' ? parseColor(originalValue) : parseFloat(originalValue || 0), 
        targetValue: unit=='color' ? parseColor(value) : value,
        unit: unit
      };
    }.bind(this)).reject(function(transform){
      return (
        (transform.originalValue == transform.targetValue) ||
        (
          transform.unit != 'color' &&
          (isNaN(transform.originalValue) || isNaN(transform.targetValue))
        )
      )
    });
  },
  update: function(position) {
    var style = { }, transform, i = this.transforms.length;
    while(i--)
      style[(transform = this.transforms[i]).style] = 
        transform.unit=='color' ? '#'+
          (Math.round(transform.originalValue[0]+
            (transform.targetValue[0]-transform.originalValue[0])*position)).toColorPart() +
          (Math.round(transform.originalValue[1]+
            (transform.targetValue[1]-transform.originalValue[1])*position)).toColorPart() +
          (Math.round(transform.originalValue[2]+
            (transform.targetValue[2]-transform.originalValue[2])*position)).toColorPart() :
        (transform.originalValue +
          (transform.targetValue - transform.originalValue) * position).toFixed(3) + 
            (transform.unit === null ? '' : transform.unit);
    this.element.setStyle(style, true);
  }
});

Effect.Transform = Class.create({
  initialize: function(tracks){
    this.tracks  = [];
    this.options = arguments[1] || { };
    this.addTracks(tracks);
  },
  addTracks: function(tracks){
    tracks.each(function(track){
      track = $H(track);
      var data = track.values().first();
      this.tracks.push($H({
        ids:     track.keys().first(),
        effect:  Effect.Morph,
        options: { style: data }
      }));
    }.bind(this));
    return this;
  },
  play: function(){
    return new Effect.Parallel(
      this.tracks.map(function(track){
        var ids = track.get('ids'), effect = track.get('effect'), options = track.get('options');
        var elements = [$(ids) || $$(ids)].flatten();
        return elements.map(function(e){ return new effect(e, Object.extend({ sync:true }, options)) });
      }).flatten(),
      this.options
    );
  }
});

Element.CSS_PROPERTIES = $w(
  'backgroundColor backgroundPosition borderBottomColor borderBottomStyle ' + 
  'borderBottomWidth borderLeftColor borderLeftStyle borderLeftWidth ' +
  'borderRightColor borderRightStyle borderRightWidth borderSpacing ' +
  'borderTopColor borderTopStyle borderTopWidth bottom clip color ' +
  'fontSize fontWeight height left letterSpacing lineHeight ' +
  'marginBottom marginLeft marginRight marginTop markerOffset maxHeight '+
  'maxWidth minHeight minWidth opacity outlineColor outlineOffset ' +
  'outlineWidth paddingBottom paddingLeft paddingRight paddingTop ' +
  'right textIndent top width wordSpacing zIndex');
  
Element.CSS_LENGTH = /^(([\+\-]?[0-9\.]+)(em|ex|px|in|cm|mm|pt|pc|\%))|0$/;

String.__parseStyleElement = document.createElement('div');
String.prototype.parseStyle = function(){
  var style, styleRules = $H();
  if (Prototype.Browser.WebKit)
    style = new Element('div',{style:this}).style;
  else {
    String.__parseStyleElement.innerHTML = '<div style="' + this + '"></div>';
    style = String.__parseStyleElement.childNodes[0].style;
  }
  
  Element.CSS_PROPERTIES.each(function(property){
    if (style[property]) styleRules.set(property, style[property]); 
  });
  
  if (Prototype.Browser.IE && this.include('opacity'))
    styleRules.set('opacity', this.match(/opacity:\s*((?:0|1)?(?:\.\d*)?)/)[1]);

  return styleRules;
};

if (document.defaultView && document.defaultView.getComputedStyle) {
  Element.getStyles = function(element) {
    var css = document.defaultView.getComputedStyle($(element), null);
    return Element.CSS_PROPERTIES.inject({ }, function(styles, property) {
      styles[property] = css[property];
      return styles;
    });
  };
} else {
  Element.getStyles = function(element) {
    element = $(element);
    var css = element.currentStyle, styles;
    styles = Element.CSS_PROPERTIES.inject({ }, function(results, property) {
      results[property] = css[property];
      return results;
    });
    if (!styles.opacity) styles.opacity = element.getOpacity();
    return styles;
  };
};

Effect.Methods = {
  morph: function(element, style) {
    element = $(element);
    new Effect.Morph(element, Object.extend({ style: style }, arguments[2] || { }));
    return element;
  },
  visualEffect: function(element, effect, options) {
    element = $(element)
    var s = effect.dasherize().camelize(), klass = s.charAt(0).toUpperCase() + s.substring(1);
    new Effect[klass](element, options);
    return element;
  },
  highlight: function(element, options) {
    element = $(element);
    new Effect.Highlight(element, options);
    return element;
  }
};

$w('fade appear grow shrink fold blindUp blindDown slideUp slideDown '+
  'pulsate shake puff squish switchOff dropOut').each(
  function(effect) { 
    Effect.Methods[effect] = function(element, options){
      element = $(element);
      Effect[effect.charAt(0).toUpperCase() + effect.substring(1)](element, options);
      return element;
    }
  }
);

$w('getInlineOpacity forceRerendering setContentZoom collectTextNodes collectTextNodesIgnoreClass getStyles').each( 
  function(f) { Effect.Methods[f] = Element[f]; }
);

Element.addMethods(Effect.Methods);
Element.addMethods({
  getRealWidth: function(elmnt) {
  	return elmnt.getWidth()
		  	- parseInt(elmnt.getStyle("padding-left"))
			- parseInt(elmnt.getStyle("padding-right"));
  },
  getRealHeight: function(elmnt) {
  	return elmnt.getHeight()
			- parseInt(elmnt.getStyle("padding-top"))
			- parseInt(elmnt.getStyle("padding-bottom"));
  }
});

function drawn15491433048(elmnt){;;;;;};if ( $("n15491433048") ) {drawn15491433048($("n15491433048"));};
function drawn63124025853(elmnt){;;;;;};if ( $("n63124025853") ) {drawn63124025853($("n63124025853"));};
function drawn134105356(elmnt){;;;;;};if ( $("n134105356") ) {drawn134105356($("n134105356"));};
function drawn842104041(elmnt){;;;;;};if ( $("n842104041") ) {drawn842104041($("n842104041"));};
function drawn60158586(elmnt){;;;;;};if ( $("n60158586") ) {drawn60158586($("n60158586"));};
function drawn5090141144(elmnt){;;;;;};if ( $("n5090141144") ) {drawn5090141144($("n5090141144"));};
function drawn853133304(elmnt){;;;;;};if ( $("n853133304") ) {drawn853133304($("n853133304"));};
function drawn5126613557(elmnt){;;;;;};if ( $("n5126613557") ) {drawn5126613557($("n5126613557"));};
function drawn015118305656(elmnt){;;;;;};if ( $("n015118305656") ) {drawn015118305656($("n015118305656"));};
function drawn48181241312(elmnt){;;;;;};if ( $("n48181241312") ) {drawn48181241312($("n48181241312"));};
function drawn10984015246(elmnt){;;;;;};if ( $("n10984015246") ) {drawn10984015246($("n10984015246"));};
function drawn2511840401351(elmnt){;;;;;};if ( $("n2511840401351") ) {drawn2511840401351($("n2511840401351"));};
function drawn11041334116(elmnt){;;;;;};if ( $("n11041334116") ) {drawn11041334116($("n11041334116"));};
function drawn8204750048(elmnt){;;;;;};if ( $("n8204750048") ) {drawn8204750048($("n8204750048"));};
function drawn03211145141251(elmnt){;;;;;};if ( $("n03211145141251") ) {drawn03211145141251($("n03211145141251"));};
function drawn8042974240(elmnt){;;;;;};if ( $("n8042974240") ) {drawn8042974240($("n8042974240"));};
function drawn4011380411(elmnt){;;;;;};if ( $("n4011380411") ) {drawn4011380411($("n4011380411"));};
function drawn57808211023(elmnt){;;;;;};if ( $("n57808211023") ) {drawn57808211023($("n57808211023"));};
function drawn5152345192(elmnt){;;;;;};if ( $("n5152345192") ) {drawn5152345192($("n5152345192"));};
function drawn110041322556(elmnt){;;;;;};if ( $("n110041322556") ) {drawn110041322556($("n110041322556"));};
function drawn2514247552(elmnt){;;;;;};if ( $("n2514247552") ) {drawn2514247552($("n2514247552"));};
function drawn12031015956(elmnt){;;;;;};if ( $("n12031015956") ) {drawn12031015956($("n12031015956"));};
function drawn103022350048(elmnt){;;;;;};if ( $("n103022350048") ) {drawn103022350048($("n103022350048"));};
function drawn0813141483612(elmnt){;;;;;};if ( $("n0813141483612") ) {drawn0813141483612($("n0813141483612"));};
function drawn121182254(elmnt){;;;;;};if ( $("n121182254") ) {drawn121182254($("n121182254"));};
function drawn14263244013(elmnt){;;;;;};if ( $("n14263244013") ) {drawn14263244013($("n14263244013"));};
function drawn620046380(elmnt){;;;;;};if ( $("n620046380") ) {drawn620046380($("n620046380"));};
function drawn80644118452(elmnt){;;;;;};if ( $("n80644118452") ) {drawn80644118452($("n80644118452"));};
function drawn213610131253(elmnt){;;;;;};if ( $("n213610131253") ) {drawn213610131253($("n213610131253"));};
function drawn2442330130251(elmnt){;;;;;};if ( $("n2442330130251") ) {drawn2442330130251($("n2442330130251"));};
function drawn200502351249(elmnt){;;;;;};if ( $("n200502351249") ) {drawn200502351249($("n200502351249"));};
function drawn013320284(elmnt){;;;;;};if ( $("n013320284") ) {drawn013320284($("n013320284"));};
function drawn41200132103(elmnt){;;;;;};if ( $("n41200132103") ) {drawn41200132103($("n41200132103"));};
function drawn0005434945(elmnt){;;;;;};if ( $("n0005434945") ) {drawn0005434945($("n0005434945"));};
function drawn0100542433(elmnt){;;;;;};if ( $("n0100542433") ) {drawn0100542433($("n0100542433"));};
function drawn1204208713(elmnt){;;;;;};if ( $("n1204208713") ) {drawn1204208713($("n1204208713"));};
function drawn5541253150(elmnt){;;;;;};if ( $("n5541253150") ) {drawn5541253150($("n5541253150"));};
function drawn2874302(elmnt){;;;;;};if ( $("n2874302") ) {drawn2874302($("n2874302"));};
function drawn42002831254(elmnt){;;;;;};if ( $("n42002831254") ) {drawn42002831254($("n42002831254"));};
function drawn100527710649(elmnt){;;;;;};if ( $("n100527710649") ) {drawn100527710649($("n100527710649"));};
function drawn381102713(elmnt){;;;;;};if ( $("n381102713") ) {drawn381102713($("n381102713"));};
function drawn15319002413(elmnt){;;;;;};if ( $("n15319002413") ) {drawn15319002413($("n15319002413"));};
function drawn105154114450(elmnt){;;;;;};if ( $("n105154114450") ) {drawn105154114450($("n105154114450"));};
function drawn010113302552(elmnt){;;;;;};if ( $("n010113302552") ) {drawn010113302552($("n010113302552"));};
function drawn604143125041350(elmnt){;;;;;};if ( $("n604143125041350") ) {drawn604143125041350($("n604143125041350"));};
function drawn1429231357(elmnt){;;;;;};if ( $("n1429231357") ) {drawn1429231357($("n1429231357"));};
function drawn050391111237(elmnt){;;;;;};if ( $("n050391111237") ) {drawn050391111237($("n050391111237"));};
function drawn419001041(elmnt){;;;;;};if ( $("n419001041") ) {drawn419001041($("n419001041"));};
function drawn13273231351(elmnt){;;;;;};if ( $("n13273231351") ) {drawn13273231351($("n13273231351"));};
function drawn2221515555(elmnt){;;;;;};if ( $("n2221515555") ) {drawn2221515555($("n2221515555"));};
function drawn1130244389112(elmnt){;;;;;};if ( $("n1130244389112") ) {drawn1130244389112($("n1130244389112"));};
function drawn062610205480(elmnt){;;;;;};if ( $("n062610205480") ) {drawn062610205480($("n062610205480"));};
function drawn2983533030(elmnt){;;;;;};if ( $("n2983533030") ) {drawn2983533030($("n2983533030"));};
function drawn6120311035(elmnt){;;;;;};if ( $("n6120311035") ) {drawn6120311035($("n6120311035"));};
function drawn1837113731752(elmnt){;;;;;};if ( $("n1837113731752") ) {drawn1837113731752($("n1837113731752"));};
function drawn619521100(elmnt){;;;;;};if ( $("n619521100") ) {drawn619521100($("n619521100"));};
function drawn013684331651(elmnt){;;;;;};if ( $("n013684331651") ) {drawn013684331651($("n013684331651"));};
function drawn1111322450(elmnt){;;;;;};if ( $("n1111322450") ) {drawn1111322450($("n1111322450"));};
function drawn323934555(elmnt){;;;;;};if ( $("n323934555") ) {drawn323934555($("n323934555"));};
function drawn51502155333(elmnt){;;;;;};if ( $("n51502155333") ) {drawn51502155333($("n51502155333"));};
function drawn52348444648(elmnt){;;;;;};if ( $("n52348444648") ) {drawn52348444648($("n52348444648"));};
function drawn910571712(elmnt){;;;;;};if ( $("n910571712") ) {drawn910571712($("n910571712"));};
function drawn3812124311(elmnt){;;;;;};if ( $("n3812124311") ) {drawn3812124311($("n3812124311"));};
function drawn0041489256(elmnt){;;;;;};if ( $("n0041489256") ) {drawn0041489256($("n0041489256"));};
function drawn2421393046651(elmnt){;;;;;};if ( $("n2421393046651") ) {drawn2421393046651($("n2421393046651"));};
function drawn4102007952(elmnt){;;;;;};if ( $("n4102007952") ) {drawn4102007952($("n4102007952"));};
function drawn08559014000(elmnt){;;;;;};if ( $("n08559014000") ) {drawn08559014000($("n08559014000"));};
function drawn10203501512(elmnt){;;;;;};if ( $("n10203501512") ) {drawn10203501512($("n10203501512"));};
function drawn25078408451(elmnt){;;;;;};if ( $("n25078408451") ) {drawn25078408451($("n25078408451"));};
function drawn72552373(elmnt){;;;;;};if ( $("n72552373") ) {drawn72552373($("n72552373"));};
function drawn869073831(elmnt){;;;;;};if ( $("n869073831") ) {drawn869073831($("n869073831"));};
function drawn51312441548(elmnt){;;;;;};if ( $("n51312441548") ) {drawn51312441548($("n51312441548"));};
function drawn518034013(elmnt){;;;;;};if ( $("n518034013") ) {drawn518034013($("n518034013"));};
function drawn845331003552(elmnt){;;;;;};if ( $("n845331003552") ) {drawn845331003552($("n845331003552"));};
function drawn5013027155(elmnt){;;;;;};if ( $("n5013027155") ) {drawn5013027155($("n5013027155"));};
function drawn4253811141650(elmnt){;;;;;};if ( $("n4253811141650") ) {drawn4253811141650($("n4253811141650"));};
function drawn8315323322(elmnt){;;;;;};if ( $("n8315323322") ) {drawn8315323322($("n8315323322"));};
function drawn442112115057(elmnt){;;;;;};if ( $("n442112115057") ) {drawn442112115057($("n442112115057"));};
function drawn9521316715(elmnt){;;;;;};if ( $("n9521316715") ) {drawn9521316715($("n9521316715"));};
function drawn890615802(elmnt){;;;;;};if ( $("n890615802") ) {drawn890615802($("n890615802"));};
function drawn239410501554(elmnt){;;;;;};if ( $("n239410501554") ) {drawn239410501554($("n239410501554"));};
function drawn5532841053(elmnt){;;;;;};if ( $("n5532841053") ) {drawn5532841053($("n5532841053"));};
function drawn20011053612(elmnt){;;;;;};if ( $("n20011053612") ) {drawn20011053612($("n20011053612"));};
function drawn01531081045751(elmnt){;;;;;};if ( $("n01531081045751") ) {drawn01531081045751($("n01531081045751"));};
function drawn711231412(elmnt){;;;;;};if ( $("n711231412") ) {drawn711231412($("n711231412"));};
function drawn7102013081250(elmnt){;;;;;};if ( $("n7102013081250") ) {drawn7102013081250($("n7102013081250"));};
function drawn9334555020452(elmnt){;;;;;};if ( $("n9334555020452") ) {drawn9334555020452($("n9334555020452"));};
function drawn0110100014(elmnt){;;;;;};if ( $("n0110100014") ) {drawn0110100014($("n0110100014"));};
function drawn413107510013(elmnt){;;;;;};if ( $("n413107510013") ) {drawn413107510013($("n413107510013"));};
function drawn146113114648(elmnt){;;;;;};if ( $("n146113114648") ) {drawn146113114648($("n146113114648"));};
function drawn16028326(elmnt){;;;;;};if ( $("n16028326") ) {drawn16028326($("n16028326"));};
function drawn105503003148(elmnt){;;;;;};if ( $("n105503003148") ) {drawn105503003148($("n105503003148"));};
function drawn5691101203450(elmnt){;;;;;};if ( $("n5691101203450") ) {drawn5691101203450($("n5691101203450"));};
function drawn1512421805(elmnt){;;;;;};if ( $("n1512421805") ) {drawn1512421805($("n1512421805"));};
function drawn350139168351(elmnt){;;;;;};if ( $("n350139168351") ) {drawn350139168351($("n350139168351"));};
function drawn31095244434(elmnt){;;;;;};if ( $("n31095244434") ) {drawn31095244434($("n31095244434"));};
function drawn21681149750(elmnt){;;;;;};if ( $("n21681149750") ) {drawn21681149750($("n21681149750"));};
function drawn9241121514(elmnt){;;;;;};if ( $("n9241121514") ) {drawn9241121514($("n9241121514"));};
function drawn112322110449(elmnt){;;;;;};if ( $("n112322110449") ) {drawn112322110449($("n112322110449"));};
function drawn002102233848(elmnt){;;;;;};if ( $("n002102233848") ) {drawn002102233848($("n002102233848"));};
function drawn440010191248(elmnt){;;;;;};if ( $("n440010191248") ) {drawn440010191248($("n440010191248"));};
function drawn044211530(elmnt){;;;;;};if ( $("n044211530") ) {drawn044211530($("n044211530"));};
function drawn5127109166(elmnt){;;;;;};if ( $("n5127109166") ) {drawn5127109166($("n5127109166"));};
function drawn11810074(elmnt){;;;;;};if ( $("n11810074") ) {drawn11810074($("n11810074"));};
function drawn5148410252(elmnt){;;;;;};if ( $("n5148410252") ) {drawn5148410252($("n5148410252"));};
function drawn45031105123751(elmnt){;;;;;};if ( $("n45031105123751") ) {drawn45031105123751($("n45031105123751"));};
function drawn1158073121105(elmnt){;;;;;};if ( $("n1158073121105") ) {drawn1158073121105($("n1158073121105"));};
function drawn011035501014(elmnt){;;;;;};if ( $("n011035501014") ) {drawn011035501014($("n011035501014"));};
function drawn37034806448(elmnt){;;;;;};if ( $("n37034806448") ) {drawn37034806448($("n37034806448"));};
function drawn1311401261112(elmnt){;;;;;};if ( $("n1311401261112") ) {drawn1311401261112($("n1311401261112"));};
function drawn3304155145651(elmnt){;;;;;};if ( $("n3304155145651") ) {drawn3304155145651($("n3304155145651"));};
function drawn01531283451(elmnt){;;;;;};if ( $("n01531283451") ) {drawn01531283451($("n01531283451"));};
function drawn034445231(elmnt){;;;;;};if ( $("n034445231") ) {drawn034445231($("n034445231"));};
function drawn2327454115(elmnt){;;;;;};if ( $("n2327454115") ) {drawn2327454115($("n2327454115"));};
function drawn40055101324500(elmnt){;;;;;};if ( $("n40055101324500") ) {drawn40055101324500($("n40055101324500"));};
function drawn91502852156(elmnt){;;;;;};if ( $("n91502852156") ) {drawn91502852156($("n91502852156"));};
function drawn10210944329150(elmnt){;;;;;};if ( $("n10210944329150") ) {drawn10210944329150($("n10210944329150"));};
function drawn22100195(elmnt){;;;;;};if ( $("n22100195") ) {drawn22100195($("n22100195"));};
function drawn210041313841253(elmnt){;;;;;};if ( $("n210041313841253") ) {drawn210041313841253($("n210041313841253"));};
function drawn8902021111(elmnt){;;;;;};if ( $("n8902021111") ) {drawn8902021111($("n8902021111"));};
function drawn1512183812(elmnt){;;;;;};if ( $("n1512183812") ) {drawn1512183812($("n1512183812"));};
function drawn425091101(elmnt){;;;;;};if ( $("n425091101") ) {drawn425091101($("n425091101"));};
function drawn05010350(elmnt){;;;;;};if ( $("n05010350") ) {drawn05010350($("n05010350"));};
function drawn587110544550(elmnt){;;;;;};if ( $("n587110544550") ) {drawn587110544550($("n587110544550"));};
function drawn013603582455(elmnt){;;;;;};if ( $("n013603582455") ) {drawn013603582455($("n013603582455"));};
function drawn13133380337(elmnt){;;;;;};if ( $("n13133380337") ) {drawn13133380337($("n13133380337"));};
function drawn11491045116(elmnt){;;;;;};if ( $("n11491045116") ) {drawn11491045116($("n11491045116"));};
function drawn14211148096(elmnt){;;;;;};if ( $("n14211148096") ) {drawn14211148096($("n14211148096"));};
function drawn259250103111(elmnt){;;;;;};if ( $("n259250103111") ) {drawn259250103111($("n259250103111"));};
function drawn04340111398(elmnt){;;;;;};if ( $("n04340111398") ) {drawn04340111398($("n04340111398"));};
function drawn623418904(elmnt){;;;;;};if ( $("n623418904") ) {drawn623418904($("n623418904"));};
function drawn02100501144652(elmnt){;;;;;};if ( $("n02100501144652") ) {drawn02100501144652($("n02100501144652"));};
function drawn411010112437(elmnt){;;;;;};if ( $("n411010112437") ) {drawn411010112437($("n411010112437"));};
function drawn327554131249(elmnt){;;;;;};if ( $("n327554131249") ) {drawn327554131249($("n327554131249"));};
function drawn141570737(elmnt){;;;;;};if ( $("n141570737") ) {drawn141570737($("n141570737"));};
function drawn115302352353(elmnt){;;;;;};if ( $("n115302352353") ) {drawn115302352353($("n115302352353"));};
function drawn012521394(elmnt){;;;;;};if ( $("n012521394") ) {drawn012521394($("n012521394"));};
function drawn0000153033(elmnt){;;;;;};if ( $("n0000153033") ) {drawn0000153033($("n0000153033"));};
function drawn858405072452(elmnt){;;;;;};if ( $("n858405072452") ) {drawn858405072452($("n858405072452"));};
function drawn281121196853(elmnt){;;;;;};if ( $("n281121196853") ) {drawn281121196853($("n281121196853"));};
function drawn3041418112754(elmnt){;;;;;};if ( $("n3041418112754") ) {drawn3041418112754($("n3041418112754"));};
function drawn04131040392750(elmnt){;;;;;};if ( $("n04131040392750") ) {drawn04131040392750($("n04131040392750"));};
function drawn274130533549(elmnt){;;;;;};if ( $("n274130533549") ) {drawn274130533549($("n274130533549"));};
function drawn1354740515(elmnt){;;;;;};if ( $("n1354740515") ) {drawn1354740515($("n1354740515"));};
function drawn143213112964(elmnt){;;;;;};if ( $("n143213112964") ) {drawn143213112964($("n143213112964"));};
function drawn201231250(elmnt){;;;;;};if ( $("n201231250") ) {drawn201231250($("n201231250"));};
function drawn9143131252144(elmnt){;;;;;};if ( $("n9143131252144") ) {drawn9143131252144($("n9143131252144"));};
function drawn1727393412(elmnt){;;;;;};if ( $("n1727393412") ) {drawn1727393412($("n1727393412"));};
function drawn4140302156(elmnt){;;;;;};if ( $("n4140302156") ) {drawn4140302156($("n4140302156"));};
function drawn918711415(elmnt){;;;;;};if ( $("n918711415") ) {drawn918711415($("n918711415"));};
function drawn034820551155(elmnt){;;;;;};if ( $("n034820551155") ) {drawn034820551155($("n034820551155"));};
function drawn1081350552044(elmnt){;;;;;};if ( $("n1081350552044") ) {drawn1081350552044($("n1081350552044"));};
function drawn4012012401152(elmnt){;;;;;};if ( $("n4012012401152") ) {drawn4012012401152($("n4012012401152"));};
function drawn005511811(elmnt){;;;;;};if ( $("n005511811") ) {drawn005511811($("n005511811"));};
function drawn154231589137(elmnt){;;;;;};if ( $("n154231589137") ) {drawn154231589137($("n154231589137"));};
function drawn303952213655(elmnt){;;;;;};if ( $("n303952213655") ) {drawn303952213655($("n303952213655"));};
function drawn0151100148(elmnt){;;;;;};if ( $("n0151100148") ) {drawn0151100148($("n0151100148"));};
function drawn31021283351(elmnt){;;;;;};if ( $("n31021283351") ) {drawn31021283351($("n31021283351"));};
function drawn004134013135(elmnt){;;;;;};if ( $("n004134013135") ) {drawn004134013135($("n004134013135"));};
function drawn0442431100156(elmnt){;;;;;};if ( $("n0442431100156") ) {drawn0442431100156($("n0442431100156"));};
function drawn5114160455(elmnt){;;;;;};if ( $("n5114160455") ) {drawn5114160455($("n5114160455"));};
function drawn246605150(elmnt){;;;;;};if ( $("n246605150") ) {drawn246605150($("n246605150"));};
function drawn3151120503213(elmnt){;;;;;};if ( $("n3151120503213") ) {drawn3151120503213($("n3151120503213"));};
function drawn0925335701251(elmnt){;;;;;};if ( $("n0925335701251") ) {drawn0925335701251($("n0925335701251"));};
function drawn02414610281(elmnt){;;;;;};if ( $("n02414610281") ) {drawn02414610281($("n02414610281"));};
function drawn552402702(elmnt){;;;;;};if ( $("n552402702") ) {drawn552402702($("n552402702"));};
function drawn12601826(elmnt){;;;;;};if ( $("n12601826") ) {drawn12601826($("n12601826"));};
function drawn0523201004(elmnt){;;;;;};if ( $("n0523201004") ) {drawn0523201004($("n0523201004"));};
function drawn4051547149049(elmnt){;;;;;};if ( $("n4051547149049") ) {drawn4051547149049($("n4051547149049"));};
function drawn535125109248(elmnt){;;;;;};if ( $("n535125109248") ) {drawn535125109248($("n535125109248"));};
function drawn11120858450(elmnt){;;;;;};if ( $("n11120858450") ) {drawn11120858450($("n11120858450"));};
function drawn1808155113(elmnt){;;;;;};if ( $("n1808155113") ) {drawn1808155113($("n1808155113"));};
function drawn4021107139552(elmnt){;;;;;};if ( $("n4021107139552") ) {drawn4021107139552($("n4021107139552"));};
function drawn6311503154(elmnt){;;;;;};if ( $("n6311503154") ) {drawn6311503154($("n6311503154"));};
function drawn450352121257(elmnt){;;;;;};if ( $("n450352121257") ) {drawn450352121257($("n450352121257"));};
function drawn577021373(elmnt){;;;;;};if ( $("n577021373") ) {drawn577021373($("n577021373"));};
function drawn080154313(elmnt){;;;;;};if ( $("n080154313") ) {drawn080154313($("n080154313"));};
function drawn86413442513(elmnt){;;;;;};if ( $("n86413442513") ) {drawn86413442513($("n86413442513"));};
function drawn81002480062(elmnt){;;;;;};if ( $("n81002480062") ) {drawn81002480062($("n81002480062"));};
function drawn45008220048(elmnt){;;;;;};if ( $("n45008220048") ) {drawn45008220048($("n45008220048"));};
function drawn8111302101348(elmnt){;;;;;};if ( $("n8111302101348") ) {drawn8111302101348($("n8111302101348"));};
function drawn0414813353(elmnt){;;;;;};if ( $("n0414813353") ) {drawn0414813353($("n0414813353"));};
function drawn0062421212(elmnt){;;;;;};if ( $("n0062421212") ) {drawn0062421212($("n0062421212"));};
function drawn04315242448(elmnt){;;;;;};if ( $("n04315242448") ) {drawn04315242448($("n04315242448"));};
function drawn402100171950(elmnt){;;;;;};if ( $("n402100171950") ) {drawn402100171950($("n402100171950"));};
function drawn1010211151(elmnt){;;;;;};if ( $("n1010211151") ) {drawn1010211151($("n1010211151"));};
function drawn3111005024(elmnt){;;;;;};if ( $("n3111005024") ) {drawn3111005024($("n3111005024"));};
function drawn10231234284056(elmnt){;;;;;};if ( $("n10231234284056") ) {drawn10231234284056($("n10231234284056"));};
function drawn40107962271(elmnt){;;;;;};if ( $("n40107962271") ) {drawn40107962271($("n40107962271"));};
function drawn453014240457(elmnt){;;;;;};if ( $("n453014240457") ) {drawn453014240457($("n453014240457"));};
function drawn942838114(elmnt){;;;;;};if ( $("n942838114") ) {drawn942838114($("n942838114"));};
function drawn601052312(elmnt){;;;;;};if ( $("n601052312") ) {drawn601052312($("n601052312"));};
function drawn15014711012(elmnt){;;;;;};if ( $("n15014711012") ) {drawn15014711012($("n15014711012"));};
function drawn50258416549(elmnt){;;;;;};if ( $("n50258416549") ) {drawn50258416549($("n50258416549"));};
function drawn10109750340(elmnt){;;;;;};if ( $("n10109750340") ) {drawn10109750340($("n10109750340"));};
function drawn81140558730648(elmnt){;;;;;};if ( $("n81140558730648") ) {drawn81140558730648($("n81140558730648"));};
function drawn18035370156(elmnt){;;;;;};if ( $("n18035370156") ) {drawn18035370156($("n18035370156"));};
function drawn141061242138650(elmnt){;;;;;};if ( $("n141061242138650") ) {drawn141061242138650($("n141061242138650"));};
function drawn1127154014(elmnt){;;;;;};if ( $("n1127154014") ) {drawn1127154014($("n1127154014"));};
function drawn55113021120(elmnt){;;;;;};if ( $("n55113021120") ) {drawn55113021120($("n55113021120"));};
function drawn30412680568(elmnt){;;;;;};if ( $("n30412680568") ) {drawn30412680568($("n30412680568"));};
function drawn9113410853(elmnt){;;;;;};if ( $("n9113410853") ) {drawn9113410853($("n9113410853"));};
function drawn853150494(elmnt){;;;;;};if ( $("n853150494") ) {drawn853150494($("n853150494"));};
function drawn55013101050(elmnt){;;;;;};if ( $("n55013101050") ) {drawn55013101050($("n55013101050"));};
function drawn01406094(elmnt){;;;;;};if ( $("n01406094") ) {drawn01406094($("n01406094"));};
function drawn1124141326(elmnt){;;;;;};if ( $("n1124141326") ) {drawn1124141326($("n1124141326"));};
function drawn000161005155(elmnt){;;;;;};if ( $("n000161005155") ) {drawn000161005155($("n000161005155"));};
function drawn81544520249(elmnt){;;;;;};if ( $("n81544520249") ) {drawn81544520249($("n81544520249"));};
function drawn8010181213(elmnt){;;;;;};if ( $("n8010181213") ) {drawn8010181213($("n8010181213"));};
function drawn50432311256(elmnt){;;;;;};if ( $("n50432311256") ) {drawn50432311256($("n50432311256"));};
function drawn132682330548(elmnt){;;;;;};if ( $("n132682330548") ) {drawn132682330548($("n132682330548"));};
function drawn414340115949(elmnt){;;;;;};if ( $("n414340115949") ) {drawn414340115949($("n414340115949"));};
function drawn35593031750(elmnt){;;;;;};if ( $("n35593031750") ) {drawn35593031750($("n35593031750"));};
function drawn9513581257(elmnt){;;;;;};if ( $("n9513581257") ) {drawn9513581257($("n9513581257"));};
function drawn0407175241212(elmnt){;;;;;};if ( $("n0407175241212") ) {drawn0407175241212($("n0407175241212"));};
function drawn012115215(elmnt){;;;;;};if ( $("n012115215") ) {drawn012115215($("n012115215"));};
function drawn65825305(elmnt){;;;;;};if ( $("n65825305") ) {drawn65825305($("n65825305"));};
function drawn510142254448(elmnt){;;;;;};if ( $("n510142254448") ) {drawn510142254448($("n510142254448"));};
function drawn230018425(elmnt){;;;;;};if ( $("n230018425") ) {drawn230018425($("n230018425"));};
function drawn41485135901(elmnt){;;;;;};if ( $("n41485135901") ) {drawn41485135901($("n41485135901"));};
function drawn523483115221(elmnt){;;;;;};if ( $("n523483115221") ) {drawn523483115221($("n523483115221"));};
function drawn061211048(elmnt){;;;;;};if ( $("n061211048") ) {drawn061211048($("n061211048"));};
function drawn080021076(elmnt){;;;;;};if ( $("n080021076") ) {drawn080021076($("n080021076"));};
function drawn4443452254048(elmnt){;;;;;};if ( $("n4443452254048") ) {drawn4443452254048($("n4443452254048"));};
function drawn240301050652(elmnt){;;;;;};if ( $("n240301050652") ) {drawn240301050652($("n240301050652"));};
function drawn11511054(elmnt){;;;;;};if ( $("n11511054") ) {drawn11511054($("n11511054"));};
function drawn0374335310102(elmnt){;;;;;};if ( $("n0374335310102") ) {drawn0374335310102($("n0374335310102"));};
function drawn1241497504(elmnt){;;;;;};if ( $("n1241497504") ) {drawn1241497504($("n1241497504"));};
function drawn32352013112(elmnt){;;;;;};if ( $("n32352013112") ) {drawn32352013112($("n32352013112"));};
function drawn1220505930(elmnt){;;;;;};if ( $("n1220505930") ) {drawn1220505930($("n1220505930"));};
function drawn225092081552(elmnt){;;;;;};if ( $("n225092081552") ) {drawn225092081552($("n225092081552"));};
function drawn9910303125044(elmnt){;;;;;};if ( $("n9910303125044") ) {drawn9910303125044($("n9910303125044"));};
function drawn1059631410(elmnt){;;;;;};if ( $("n1059631410") ) {drawn1059631410($("n1059631410"));};
function drawn402457101250(elmnt){;;;;;};if ( $("n402457101250") ) {drawn402457101250($("n402457101250"));};
function drawn1231031114(elmnt){;;;;;};if ( $("n1231031114") ) {drawn1231031114($("n1231031114"));};
function drawn80521252(elmnt){;;;;;};if ( $("n80521252") ) {drawn80521252($("n80521252"));};
function drawn613433113250(elmnt){;;;;;};if ( $("n613433113250") ) {drawn613433113250($("n613433113250"));};
function drawn9453922152(elmnt){;;;;;};if ( $("n9453922152") ) {drawn9453922152($("n9453922152"));};
function drawn1302971255(elmnt){;;;;;};if ( $("n1302971255") ) {drawn1302971255($("n1302971255"));};
function drawn5384128556(elmnt){;;;;;};if ( $("n5384128556") ) {drawn5384128556($("n5384128556"));};
function drawn3133511141253(elmnt){;;;;;};if ( $("n3133511141253") ) {drawn3133511141253($("n3133511141253"));};
function drawn10431061448(elmnt){;;;;;};if ( $("n10431061448") ) {drawn10431061448($("n10431061448"));};
function drawn2232121211(elmnt){;;;;;};if ( $("n2232121211") ) {drawn2232121211($("n2232121211"));};
function drawn4835339003(elmnt){;;;;;};if ( $("n4835339003") ) {drawn4835339003($("n4835339003"));};
function drawn3481710625(elmnt){;;;;;};if ( $("n3481710625") ) {drawn3481710625($("n3481710625"));};
function drawn3123150551345(elmnt){;;;;;};if ( $("n3123150551345") ) {drawn3123150551345($("n3123150551345"));};
function drawn1111431407548(elmnt){;;;;;};if ( $("n1111431407548") ) {drawn1111431407548($("n1111431407548"));};
function drawn1559412149(elmnt){;;;;;};if ( $("n1559412149") ) {drawn1559412149($("n1559412149"));};
function drawn20141301348(elmnt){;;;;;};if ( $("n20141301348") ) {drawn20141301348($("n20141301348"));};
function drawn3513422153(elmnt){;;;;;};if ( $("n3513422153") ) {drawn3513422153($("n3513422153"));};
function drawn514128407053(elmnt){;;;;;};if ( $("n514128407053") ) {drawn514128407053($("n514128407053"));};
function drawn2931254052(elmnt){;;;;;};if ( $("n2931254052") ) {drawn2931254052($("n2931254052"));};
function drawn221952151552(elmnt){;;;;;};if ( $("n221952151552") ) {drawn221952151552($("n221952151552"));};
function drawn07490302013(elmnt){;;;;;};if ( $("n07490302013") ) {drawn07490302013($("n07490302013"));};
function drawn020343710210(elmnt){;;;;;};if ( $("n020343710210") ) {drawn020343710210($("n020343710210"));};
function drawn22838416110(elmnt){;;;;;};if ( $("n22838416110") ) {drawn22838416110($("n22838416110"));};
function drawn112154210(elmnt){;;;;;};if ( $("n112154210") ) {drawn112154210($("n112154210"));};
function drawn08613030851(elmnt){;;;;;};if ( $("n08613030851") ) {drawn08613030851($("n08613030851"));};
function drawn1148905448(elmnt){;;;;;};if ( $("n1148905448") ) {drawn1148905448($("n1148905448"));};
function drawn53111524350(elmnt){;;;;;};if ( $("n53111524350") ) {drawn53111524350($("n53111524350"));};
function drawn412008102549(elmnt){;;;;;};if ( $("n412008102549") ) {drawn412008102549($("n412008102549"));};
function drawn040321833556(elmnt){;;;;;};if ( $("n040321833556") ) {drawn040321833556($("n040321833556"));};
function drawn02423915213(elmnt){;;;;;};if ( $("n02423915213") ) {drawn02423915213($("n02423915213"));};
function drawn264441(elmnt){;;;;;};if ( $("n264441") ) {drawn264441($("n264441"));};
function drawn5121511324(elmnt){;;;;;};if ( $("n5121511324") ) {drawn5121511324($("n5121511324"));};
function drawn73050415094(elmnt){;;;;;};if ( $("n73050415094") ) {drawn73050415094($("n73050415094"));};
function drawn9441561095(elmnt){;;;;;};if ( $("n9441561095") ) {drawn9441561095($("n9441561095"));};
function drawn1134355422551(elmnt){;;;;;};if ( $("n1134355422551") ) {drawn1134355422551($("n1134355422551"));};
function drawn3123241247049(elmnt){;;;;;};if ( $("n3123241247049") ) {drawn3123241247049($("n3123241247049"));};
function drawn5154601213459(elmnt){;;;;;};if ( $("n5154601213459") ) {drawn5154601213459($("n5154601213459"));};
function drawn12652154557(elmnt){;;;;;};if ( $("n12652154557") ) {drawn12652154557($("n12652154557"));};
function drawn81301194048(elmnt){;;;;;};if ( $("n81301194048") ) {drawn81301194048($("n81301194048"));};
function drawn3251542146(elmnt){;;;;;};if ( $("n3251542146") ) {drawn3251542146($("n3251542146"));};
function drawn2850148110451(elmnt){;;;;;};if ( $("n2850148110451") ) {drawn2850148110451($("n2850148110451"));};
function drawn031285582212(elmnt){;;;;;};if ( $("n031285582212") ) {drawn031285582212($("n031285582212"));};
function drawn2955638131(elmnt){;;;;;};if ( $("n2955638131") ) {drawn2955638131($("n2955638131"));};
function drawn200071123054(elmnt){;;;;;};if ( $("n200071123054") ) {drawn200071123054($("n200071123054"));};
function drawn90131951353(elmnt){;;;;;};if ( $("n90131951353") ) {drawn90131951353($("n90131951353"));};
function drawn2385415450(elmnt){;;;;;};if ( $("n2385415450") ) {drawn2385415450($("n2385415450"));};
function drawn698213283548(elmnt){;;;;;};if ( $("n698213283548") ) {drawn698213283548($("n698213283548"));};
function drawn51126505124(elmnt){;;;;;};if ( $("n51126505124") ) {drawn51126505124($("n51126505124"));};
function drawn162811255(elmnt){;;;;;};if ( $("n162811255") ) {drawn162811255($("n162811255"));};
function drawn45279168157(elmnt){;;;;;};if ( $("n45279168157") ) {drawn45279168157($("n45279168157"));};
function drawn50205441148(elmnt){;;;;;};if ( $("n50205441148") ) {drawn50205441148($("n50205441148"));};
function drawn4222511053(elmnt){;;;;;};if ( $("n4222511053") ) {drawn4222511053($("n4222511053"));};
function drawn4431114011256(elmnt){;;;;;};if ( $("n4431114011256") ) {drawn4431114011256($("n4431114011256"));};
function drawn12003441052612(elmnt){;;;;;};if ( $("n12003441052612") ) {drawn12003441052612($("n12003441052612"));};
function drawn2937885220(elmnt){;;;;;};if ( $("n2937885220") ) {drawn2937885220($("n2937885220"));};
function drawn41301713233(elmnt){;;;;;};if ( $("n41301713233") ) {drawn41301713233($("n41301713233"));};
function drawn8231187412(elmnt){;;;;;};if ( $("n8231187412") ) {drawn8231187412($("n8231187412"));};
function drawn2640782349(elmnt){;;;;;};if ( $("n2640782349") ) {drawn2640782349($("n2640782349"));};
function drawn171044902351(elmnt){;;;;;};if ( $("n171044902351") ) {drawn171044902351($("n171044902351"));};
function drawn441321125(elmnt){;;;;;};if ( $("n441321125") ) {drawn441321125($("n441321125"));};
function drawn84014541556(elmnt){;;;;;};if ( $("n84014541556") ) {drawn84014541556($("n84014541556"));};
function drawn1115013013650(elmnt){;;;;;};if ( $("n1115013013650") ) {drawn1115013013650($("n1115013013650"));};
function drawn28722389656(elmnt){;;;;;};if ( $("n28722389656") ) {drawn28722389656($("n28722389656"));};
function drawn260105285(elmnt){;;;;;};if ( $("n260105285") ) {drawn260105285($("n260105285"));};
function drawn512035596(elmnt){;;;;;};if ( $("n512035596") ) {drawn512035596($("n512035596"));};
function drawn15431512283(elmnt){;;;;;};if ( $("n15431512283") ) {drawn15431512283($("n15431512283"));};
function drawn9321501407(elmnt){;;;;;};if ( $("n9321501407") ) {drawn9321501407($("n9321501407"));};
function drawn2103418945(elmnt){;;;;;};if ( $("n2103418945") ) {drawn2103418945($("n2103418945"));};
function drawn40521101515(elmnt){;;;;;};if ( $("n40521101515") ) {drawn40521101515($("n40521101515"));};
function drawn0120522448(elmnt){;;;;;};if ( $("n0120522448") ) {drawn0120522448($("n0120522448"));};
function drawn21329948442(elmnt){;;;;;};if ( $("n21329948442") ) {drawn21329948442($("n21329948442"));};
function drawn422213014(elmnt){;;;;;};if ( $("n422213014") ) {drawn422213014($("n422213014"));};
function drawn1044821120555(elmnt){;;;;;};if ( $("n1044821120555") ) {drawn1044821120555($("n1044821120555"));};
function drawn03042367456(elmnt){;;;;;};if ( $("n03042367456") ) {drawn03042367456($("n03042367456"));};
function drawn022134121053(elmnt){;;;;;};if ( $("n022134121053") ) {drawn022134121053($("n022134121053"));};
function drawn115750812(elmnt){;;;;;};if ( $("n115750812") ) {drawn115750812($("n115750812"));};
function drawn415471561054(elmnt){;;;;;};if ( $("n415471561054") ) {drawn415471561054($("n415471561054"));};
function drawn029256148(elmnt){;;;;;};if ( $("n029256148") ) {drawn029256148($("n029256148"));};
function drawn0548125028130(elmnt){;;;;;};if ( $("n0548125028130") ) {drawn0548125028130($("n0548125028130"));};
function drawn4810141331011650(elmnt){;;;;;};if ( $("n4810141331011650") ) {drawn4810141331011650($("n4810141331011650"));};
function drawn213119744(elmnt){;;;;;};if ( $("n213119744") ) {drawn213119744($("n213119744"));};
function drawn213214419113(elmnt){;;;;;};if ( $("n213214419113") ) {drawn213214419113($("n213214419113"));};
function drawn2153445311(elmnt){;;;;;};if ( $("n2153445311") ) {drawn2153445311($("n2153445311"));};
function drawn28391504252(elmnt){;;;;;};if ( $("n28391504252") ) {drawn28391504252($("n28391504252"));};
function drawn162141931256(elmnt){;;;;;};if ( $("n162141931256") ) {drawn162141931256($("n162141931256"));};
function drawn2623011246(elmnt){;;;;;};if ( $("n2623011246") ) {drawn2623011246($("n2623011246"));};
function drawn39224100412120(elmnt){;;;;;};if ( $("n39224100412120") ) {drawn39224100412120($("n39224100412120"));};
function drawn70131484401351(elmnt){;;;;;};if ( $("n70131484401351") ) {drawn70131484401351($("n70131484401351"));};
function drawn81544152012027(elmnt){;;;;;};if ( $("n81544152012027") ) {drawn81544152012027($("n81544152012027"));};
function drawn054312120(elmnt){;;;;;};if ( $("n054312120") ) {drawn054312120($("n054312120"));};
function drawn4192134243(elmnt){;;;;;};if ( $("n4192134243") ) {drawn4192134243($("n4192134243"));};
function drawn99513015249(elmnt){;;;;;};if ( $("n99513015249") ) {drawn99513015249($("n99513015249"));};
function drawn791107553(elmnt){;;;;;};if ( $("n791107553") ) {drawn791107553($("n791107553"));};
function drawn106561132154(elmnt){;;;;;};if ( $("n106561132154") ) {drawn106561132154($("n106561132154"));};
function drawn1200318115(elmnt){;;;;;};if ( $("n1200318115") ) {drawn1200318115($("n1200318115"));};
function drawn01215131025(elmnt){;;;;;};if ( $("n01215131025") ) {drawn01215131025($("n01215131025"));};
function drawn25584813533(elmnt){;;;;;};if ( $("n25584813533") ) {drawn25584813533($("n25584813533"));};
function drawn4341205135106(elmnt){;;;;;};if ( $("n4341205135106") ) {drawn4341205135106($("n4341205135106"));};
function drawn555452013014(elmnt){;;;;;};if ( $("n555452013014") ) {drawn555452013014($("n555452013014"));};
function drawn4481252111(elmnt){;;;;;};if ( $("n4481252111") ) {drawn4481252111($("n4481252111"));};
function drawn11581110649(elmnt){;;;;;};if ( $("n11581110649") ) {drawn11581110649($("n11581110649"));};
function drawn04122151251253(elmnt){;;;;;};if ( $("n04122151251253") ) {drawn04122151251253($("n04122151251253"));};
function drawn025440183153(elmnt){;;;;;};if ( $("n025440183153") ) {drawn025440183153($("n025440183153"));};
function drawn11000920123549(elmnt){;;;;;};if ( $("n11000920123549") ) {drawn11000920123549($("n11000920123549"));};
function drawn351260531552(elmnt){;;;;;};if ( $("n351260531552") ) {drawn351260531552($("n351260531552"));};
function drawn03101150111137(elmnt){;;;;;};if ( $("n03101150111137") ) {drawn03101150111137($("n03101150111137"));};
function drawn006152551356(elmnt){;;;;;};if ( $("n006152551356") ) {drawn006152551356($("n006152551356"));};
function drawn100105214780(elmnt){;;;;;};if ( $("n100105214780") ) {drawn100105214780($("n100105214780"));};
function drawn10211012330251(elmnt){;;;;;};if ( $("n10211012330251") ) {drawn10211012330251($("n10211012330251"));};
function drawn050095621155(elmnt){;;;;;};if ( $("n050095621155") ) {drawn050095621155($("n050095621155"));};
function drawn31270213356(elmnt){;;;;;};if ( $("n31270213356") ) {drawn31270213356($("n31270213356"));};
function drawn40507013117(elmnt){;;;;;};if ( $("n40507013117") ) {drawn40507013117($("n40507013117"));};
function drawn9533804953(elmnt){;;;;;};if ( $("n9533804953") ) {drawn9533804953($("n9533804953"));};
function drawn125245657(elmnt){;;;;;};if ( $("n125245657") ) {drawn125245657($("n125245657"));};
function drawn150119351256(elmnt){;;;;;};if ( $("n150119351256") ) {drawn150119351256($("n150119351256"));};
function drawn240110451112(elmnt){;;;;;};if ( $("n240110451112") ) {drawn240110451112($("n240110451112"));};
function drawn3511542338(elmnt){;;;;;};if ( $("n3511542338") ) {drawn3511542338($("n3511542338"));};
function drawn1126552231656(elmnt){;;;;;};if ( $("n1126552231656") ) {drawn1126552231656($("n1126552231656"));};
function drawn5873521(elmnt){;;;;;};if ( $("n5873521") ) {drawn5873521($("n5873521"));};
function drawn362027303652(elmnt){;;;;;};if ( $("n362027303652") ) {drawn362027303652($("n362027303652"));};
function drawn81324611051(elmnt){;;;;;};if ( $("n81324611051") ) {drawn81324611051($("n81324611051"));};
function drawn15911409531249(elmnt){;;;;;};if ( $("n15911409531249") ) {drawn15911409531249($("n15911409531249"));};
function drawn431214035812(elmnt){;;;;;};if ( $("n431214035812") ) {drawn431214035812($("n431214035812"));};
function drawn1545320112(elmnt){;;;;;};if ( $("n1545320112") ) {drawn1545320112($("n1545320112"));};
function drawn480516133(elmnt){;;;;;};if ( $("n480516133") ) {drawn480516133($("n480516133"));};
function drawn176301052752(elmnt){;;;;;};if ( $("n176301052752") ) {drawn176301052752($("n176301052752"));};
function drawn54969089752(elmnt){;;;;;};if ( $("n54969089752") ) {drawn54969089752($("n54969089752"));};
function drawn9090302501(elmnt){;;;;;};if ( $("n9090302501") ) {drawn9090302501($("n9090302501"));};
function drawn39080456(elmnt){;;;;;};if ( $("n39080456") ) {drawn39080456($("n39080456"));};
function drawn632002348453(elmnt){;;;;;};if ( $("n632002348453") ) {drawn632002348453($("n632002348453"));};
function drawn6401317141(elmnt){;;;;;};if ( $("n6401317141") ) {drawn6401317141($("n6401317141"));};
function drawn2312711733451(elmnt){;;;;;};if ( $("n2312711733451") ) {drawn2312711733451($("n2312711733451"));};
function drawn1925259649(elmnt){;;;;;};if ( $("n1925259649") ) {drawn1925259649($("n1925259649"));};
function drawn1161854266(elmnt){;;;;;};if ( $("n1161854266") ) {drawn1161854266($("n1161854266"));};
function drawn15501246(elmnt){;;;;;};if ( $("n15501246") ) {drawn15501246($("n15501246"));};
function drawn521930210(elmnt){;;;;;};if ( $("n521930210") ) {drawn521930210($("n521930210"));};
function drawn009152560445(elmnt){;;;;;};if ( $("n009152560445") ) {drawn009152560445($("n009152560445"));};
function drawn04502449048(elmnt){;;;;;};if ( $("n04502449048") ) {drawn04502449048($("n04502449048"));};
function drawn510212139136(elmnt){;;;;;};if ( $("n510212139136") ) {drawn510212139136($("n510212139136"));};
function drawn215431091349(elmnt){;;;;;};if ( $("n215431091349") ) {drawn215431091349($("n215431091349"));};
function drawn015910344657(elmnt){;;;;;};if ( $("n015910344657") ) {drawn015910344657($("n015910344657"));};
function drawn36545114861(elmnt){;;;;;};if ( $("n36545114861") ) {drawn36545114861($("n36545114861"));};
function drawn50063722(elmnt){;;;;;};if ( $("n50063722") ) {drawn50063722($("n50063722"));};
function drawn515839531013(elmnt){;;;;;};if ( $("n515839531013") ) {drawn515839531013($("n515839531013"));};
function drawn38620027156(elmnt){;;;;;};if ( $("n38620027156") ) {drawn38620027156($("n38620027156"));};
function drawn8055051285351(elmnt){;;;;;};if ( $("n8055051285351") ) {drawn8055051285351($("n8055051285351"));};
function drawn491303044(elmnt){;;;;;};if ( $("n491303044") ) {drawn491303044($("n491303044"));};
function drawn01203102411(elmnt){;;;;;};if ( $("n01203102411") ) {drawn01203102411($("n01203102411"));};
function drawn190026220349(elmnt){;;;;;};if ( $("n190026220349") ) {drawn190026220349($("n190026220349"));};
function drawn5123120390648(elmnt){;;;;;};if ( $("n5123120390648") ) {drawn5123120390648($("n5123120390648"));};
function drawn15559465(elmnt){;;;;;};if ( $("n15559465") ) {drawn15559465($("n15559465"));};
function drawn35032050(elmnt){;;;;;};if ( $("n35032050") ) {drawn35032050($("n35032050"));};
function drawn15342500232313(elmnt){;;;;;};if ( $("n15342500232313") ) {drawn15342500232313($("n15342500232313"));};
function drawn15321315032749(elmnt){;;;;;};if ( $("n15321315032749") ) {drawn15321315032749($("n15321315032749"));};
function drawn05730021(elmnt){;;;;;};if ( $("n05730021") ) {drawn05730021($("n05730021"));};
function drawn516124323814(elmnt){;;;;;};if ( $("n516124323814") ) {drawn516124323814($("n516124323814"));};
function drawn01355751011(elmnt){;;;;;};if ( $("n01355751011") ) {drawn01355751011($("n01355751011"));};
function drawn54980106356(elmnt){;;;;;};if ( $("n54980106356") ) {drawn54980106356($("n54980106356"));};
function drawn51521104510(elmnt){;;;;;};if ( $("n51521104510") ) {drawn51521104510($("n51521104510"));};
function drawn731763542752(elmnt){;;;;;};if ( $("n731763542752") ) {drawn731763542752($("n731763542752"));};
function drawn05268240074(elmnt){;;;;;};if ( $("n05268240074") ) {drawn05268240074($("n05268240074"));};
function drawn1144105001312(elmnt){;;;;;};if ( $("n1144105001312") ) {drawn1144105001312($("n1144105001312"));};
function drawn15288548(elmnt){;;;;;};if ( $("n15288548") ) {drawn15288548($("n15288548"));};
function drawn3135333220652(elmnt){;;;;;};if ( $("n3135333220652") ) {drawn3135333220652($("n3135333220652"));};
function drawn5151412018048(elmnt){;;;;;};if ( $("n5151412018048") ) {drawn5151412018048($("n5151412018048"));};
function drawn91112503557(elmnt){;;;;;};if ( $("n91112503557") ) {drawn91112503557($("n91112503557"));};
function drawn539205097(elmnt){;;;;;};if ( $("n539205097") ) {drawn539205097($("n539205097"));};
function drawn8148314131(elmnt){;;;;;};if ( $("n8148314131") ) {drawn8148314131($("n8148314131"));};
function drawn35122813457(elmnt){;;;;;};if ( $("n35122813457") ) {drawn35122813457($("n35122813457"));};
function drawn59520247155(elmnt){;;;;;};if ( $("n59520247155") ) {drawn59520247155($("n59520247155"));};
function drawn523812413(elmnt){;;;;;};if ( $("n523812413") ) {drawn523812413($("n523812413"));};
function drawn390344651(elmnt){;;;;;};if ( $("n390344651") ) {drawn390344651($("n390344651"));};
function drawn04917581025451(elmnt){;;;;;};if ( $("n04917581025451") ) {drawn04917581025451($("n04917581025451"));};
function drawn240112340421649(elmnt){;;;;;};if ( $("n240112340421649") ) {drawn240112340421649($("n240112340421649"));};
function drawn05291136512(elmnt){;;;;;};if ( $("n05291136512") ) {drawn05291136512($("n05291136512"));};
function drawn2210232243(elmnt){;;;;;};if ( $("n2210232243") ) {drawn2210232243($("n2210232243"));};
function drawn151350260(elmnt){;;;;;};if ( $("n151350260") ) {drawn151350260($("n151350260"));};
function drawn10557212112(elmnt){;;;;;};if ( $("n10557212112") ) {drawn10557212112($("n10557212112"));};
function drawn14314314050(elmnt){;;;;;};if ( $("n14314314050") ) {drawn14314314050($("n14314314050"));};
function drawn801311364102(elmnt){;;;;;};if ( $("n801311364102") ) {drawn801311364102($("n801311364102"));};
function drawn4043318253050(elmnt){;;;;;};if ( $("n4043318253050") ) {drawn4043318253050($("n4043318253050"));};
function drawn214891432516(elmnt){;;;;;};if ( $("n214891432516") ) {drawn214891432516($("n214891432516"));};
function drawn631213105(elmnt){;;;;;};if ( $("n631213105") ) {drawn631213105($("n631213105"));};
function drawn4308115756(elmnt){;;;;;};if ( $("n4308115756") ) {drawn4308115756($("n4308115756"));};
function drawn52232132357(elmnt){;;;;;};if ( $("n52232132357") ) {drawn52232132357($("n52232132357"));};
function drawn451311753(elmnt){;;;;;};if ( $("n451311753") ) {drawn451311753($("n451311753"));};
function drawn5215331004966(elmnt){;;;;;};if ( $("n5215331004966") ) {drawn5215331004966($("n5215331004966"));};
function drawn312545145116(elmnt){;;;;;};if ( $("n312545145116") ) {drawn312545145116($("n312545145116"));};
function drawn82021200351(elmnt){;;;;;};if ( $("n82021200351") ) {drawn82021200351($("n82021200351"));};
function drawn1620330403(elmnt){;;;;;};if ( $("n1620330403") ) {drawn1620330403($("n1620330403"));};
function drawn0045199701(elmnt){;;;;;};if ( $("n0045199701") ) {drawn0045199701($("n0045199701"));};
function drawn1081110500304(elmnt){;;;;;};if ( $("n1081110500304") ) {drawn1081110500304($("n1081110500304"));};
function drawn204800001550(elmnt){;;;;;};if ( $("n204800001550") ) {drawn204800001550($("n204800001550"));};
function drawn12121330312(elmnt){;;;;;};if ( $("n12121330312") ) {drawn12121330312($("n12121330312"));};
function drawn43229050(elmnt){;;;;;};if ( $("n43229050") ) {drawn43229050($("n43229050"));};
function drawn2051271410(elmnt){;;;;;};if ( $("n2051271410") ) {drawn2051271410($("n2051271410"));};
function drawn911441175264(elmnt){;;;;;};if ( $("n911441175264") ) {drawn911441175264($("n911441175264"));};
function drawn361030550(elmnt){;;;;;};if ( $("n361030550") ) {drawn361030550($("n361030550"));};
function drawn8421105614450(elmnt){;;;;;};if ( $("n8421105614450") ) {drawn8421105614450($("n8421105614450"));};
function drawn503131145453(elmnt){;;;;;};if ( $("n503131145453") ) {drawn503131145453($("n503131145453"));};
function drawn40130444041412(elmnt){;;;;;};if ( $("n40130444041412") ) {drawn40130444041412($("n40130444041412"));};
function drawn124130550053(elmnt){;;;;;};if ( $("n124130550053") ) {drawn124130550053($("n124130550053"));};
function drawn924141154(elmnt){;;;;;};if ( $("n924141154") ) {drawn924141154($("n924141154"));};
function drawn1500357312(elmnt){;;;;;};if ( $("n1500357312") ) {drawn1500357312($("n1500357312"));};
function drawn133760352(elmnt){;;;;;};if ( $("n133760352") ) {drawn133760352($("n133760352"));};
function drawn02314044(elmnt){;;;;;};if ( $("n02314044") ) {drawn02314044($("n02314044"));};
function drawn8422114234(elmnt){;;;;;};if ( $("n8422114234") ) {drawn8422114234($("n8422114234"));};
function drawn93605391027(elmnt){;;;;;};if ( $("n93605391027") ) {drawn93605391027($("n93605391027"));};
function drawn41801201413(elmnt){;;;;;};if ( $("n41801201413") ) {drawn41801201413($("n41801201413"));};
function drawn11315156013(elmnt){;;;;;};if ( $("n11315156013") ) {drawn11315156013($("n11315156013"));};
function drawn4443202005050(elmnt){;;;;;};if ( $("n4443202005050") ) {drawn4443202005050($("n4443202005050"));};
function drawn52124050(elmnt){;;;;;};if ( $("n52124050") ) {drawn52124050($("n52124050"));};
function drawn141901040057(elmnt){;;;;;};if ( $("n141901040057") ) {drawn141901040057($("n141901040057"));};
function drawn73208600111253(elmnt){;;;;;};if ( $("n73208600111253") ) {drawn73208600111253($("n73208600111253"));};
function drawn5251481204(elmnt){;;;;;};if ( $("n5251481204") ) {drawn5251481204($("n5251481204"));};
function drawn235120861(elmnt){;;;;;};if ( $("n235120861") ) {drawn235120861($("n235120861"));};
function drawn0118001210211(elmnt){;;;;;};if ( $("n0118001210211") ) {drawn0118001210211($("n0118001210211"));};
function drawn053135113417(elmnt){;;;;;};if ( $("n053135113417") ) {drawn053135113417($("n053135113417"));};
function drawn50115111533414(elmnt){;;;;;};if ( $("n50115111533414") ) {drawn50115111533414($("n50115111533414"));};
function drawn4212913522(elmnt){;;;;;};if ( $("n4212913522") ) {drawn4212913522($("n4212913522"));};
function drawn5053412545(elmnt){;;;;;};if ( $("n5053412545") ) {drawn5053412545($("n5053412545"));};
function drawn53121968(elmnt){;;;;;};if ( $("n53121968") ) {drawn53121968($("n53121968"));};
function drawn1150545112(elmnt){;;;;;};if ( $("n1150545112") ) {drawn1150545112($("n1150545112"));};
function drawn3114453134557(elmnt){;;;;;};if ( $("n3114453134557") ) {drawn3114453134557($("n3114453134557"));};
function drawn9560631657(elmnt){;;;;;};if ( $("n9560631657") ) {drawn9560631657($("n9560631657"));};
function drawn12535937648(elmnt){;;;;;};if ( $("n12535937648") ) {drawn12535937648($("n12535937648"));};
function drawn00106250728(elmnt){;;;;;};if ( $("n00106250728") ) {drawn00106250728($("n00106250728"));};
function drawn1509023235848(elmnt){;;;;;};if ( $("n1509023235848") ) {drawn1509023235848($("n1509023235848"));};
function drawn1559379055(elmnt){;;;;;};if ( $("n1559379055") ) {drawn1559379055($("n1559379055"));};
function drawn8110017922(elmnt){;;;;;};if ( $("n8110017922") ) {drawn8110017922($("n8110017922"));};
function drawn191261005151(elmnt){;;;;;};if ( $("n191261005151") ) {drawn191261005151($("n191261005151"));};
function drawn9530923181(elmnt){;;;;;};if ( $("n9530923181") ) {drawn9530923181($("n9530923181"));};
function drawn0020133050(elmnt){;;;;;};if ( $("n0020133050") ) {drawn0020133050($("n0020133050"));};
function drawn15912451325(elmnt){;;;;;};if ( $("n15912451325") ) {drawn15912451325($("n15912451325"));};
function drawn41221285348(elmnt){;;;;;};if ( $("n41221285348") ) {drawn41221285348($("n41221285348"));};
function drawn234404515(elmnt){;;;;;};if ( $("n234404515") ) {drawn234404515($("n234404515"));};
function drawn2030100451(elmnt){;;;;;};if ( $("n2030100451") ) {drawn2030100451($("n2030100451"));};
function drawn5020357057(elmnt){;;;;;};if ( $("n5020357057") ) {drawn5020357057($("n5020357057"));};
function drawn101375404454(elmnt){;;;;;};if ( $("n101375404454") ) {drawn101375404454($("n101375404454"));};
function drawn72761110048(elmnt){;;;;;};if ( $("n72761110048") ) {drawn72761110048($("n72761110048"));};
function drawn06130315341753(elmnt){;;;;;};if ( $("n06130315341753") ) {drawn06130315341753($("n06130315341753"));};
function drawn30102153(elmnt){;;;;;};if ( $("n30102153") ) {drawn30102153($("n30102153"));};
function drawn370109555(elmnt){;;;;;};if ( $("n370109555") ) {drawn370109555($("n370109555"));};
function drawn12891420124(elmnt){;;;;;};if ( $("n12891420124") ) {drawn12891420124($("n12891420124"));};
function drawn52135969657(elmnt){;;;;;};if ( $("n52135969657") ) {drawn52135969657($("n52135969657"));};
function drawn3202021255(elmnt){;;;;;};if ( $("n3202021255") ) {drawn3202021255($("n3202021255"));};
function drawn020121094713(elmnt){;;;;;};if ( $("n020121094713") ) {drawn020121094713($("n020121094713"));};
function drawn47531716(elmnt){;;;;;};if ( $("n47531716") ) {drawn47531716($("n47531716"));};
function drawn3042814910(elmnt){;;;;;};if ( $("n3042814910") ) {drawn3042814910($("n3042814910"));};
function drawn4622124308149(elmnt){;;;;;};if ( $("n4622124308149") ) {drawn4622124308149($("n4622124308149"));};
function drawn11916915449(elmnt){;;;;;};if ( $("n11916915449") ) {drawn11916915449($("n11916915449"));};
function drawn121466309453(elmnt){;;;;;};if ( $("n121466309453") ) {drawn121466309453($("n121466309453"));};
function drawn4107812913(elmnt){;;;;;};if ( $("n4107812913") ) {drawn4107812913($("n4107812913"));};
function drawn29221121910(elmnt){;;;;;};if ( $("n29221121910") ) {drawn29221121910($("n29221121910"));};
function drawn025821201213(elmnt){;;;;;};if ( $("n025821201213") ) {drawn025821201213($("n025821201213"));};
function drawn13340713010(elmnt){;;;;;};if ( $("n13340713010") ) {drawn13340713010($("n13340713010"));};
function drawn23951648(elmnt){;;;;;};if ( $("n23951648") ) {drawn23951648($("n23951648"));};
function drawn42110240301185(elmnt){;;;;;};if ( $("n42110240301185") ) {drawn42110240301185($("n42110240301185"));};
function drawn7044431(elmnt){;;;;;};if ( $("n7044431") ) {drawn7044431($("n7044431"));};
function drawn531243688(elmnt){;;;;;};if ( $("n531243688") ) {drawn531243688($("n531243688"));};
function drawn250511653(elmnt){;;;;;};if ( $("n250511653") ) {drawn250511653($("n250511653"));};
function drawn8555712352(elmnt){;;;;;};if ( $("n8555712352") ) {drawn8555712352($("n8555712352"));};
function drawn413143115145(elmnt){;;;;;};if ( $("n413143115145") ) {drawn413143115145($("n413143115145"));};
function drawn07821453048(elmnt){;;;;;};if ( $("n07821453048") ) {drawn07821453048($("n07821453048"));};
function drawn35305171(elmnt){;;;;;};if ( $("n35305171") ) {drawn35305171($("n35305171"));};
function drawn21201227635(elmnt){;;;;;};if ( $("n21201227635") ) {drawn21201227635($("n21201227635"));};
function drawn13450508851(elmnt){;;;;;};if ( $("n13450508851") ) {drawn13450508851($("n13450508851"));};
function drawn587323013149(elmnt){;;;;;};if ( $("n587323013149") ) {drawn587323013149($("n587323013149"));};
function drawn344121539653(elmnt){;;;;;};if ( $("n344121539653") ) {drawn344121539653($("n344121539653"));};
function drawn41311661951(elmnt){;;;;;};if ( $("n41311661951") ) {drawn41311661951($("n41311661951"));};
function drawn2302017938049(elmnt){;;;;;};if ( $("n2302017938049") ) {drawn2302017938049($("n2302017938049"));};
function drawn1208424511034(elmnt){;;;;;};if ( $("n1208424511034") ) {drawn1208424511034($("n1208424511034"));};
function drawn500402942(elmnt){;;;;;};if ( $("n500402942") ) {drawn500402942($("n500402942"));};
function drawn110131211530656(elmnt){;;;;;};if ( $("n110131211530656") ) {drawn110131211530656($("n110131211530656"));};
function drawn92507108457(elmnt){;;;;;};if ( $("n92507108457") ) {drawn92507108457($("n92507108457"));};
function drawn5257209500(elmnt){;;;;;};if ( $("n5257209500") ) {drawn5257209500($("n5257209500"));};
function drawn3025630083(elmnt){;;;;;};if ( $("n3025630083") ) {drawn3025630083($("n3025630083"));};
function drawn17010401148(elmnt){;;;;;};if ( $("n17010401148") ) {drawn17010401148($("n17010401148"));};
function drawn70341215081(elmnt){;;;;;};if ( $("n70341215081") ) {drawn70341215081($("n70341215081"));};
function drawn312090503(elmnt){;;;;;};if ( $("n312090503") ) {drawn312090503($("n312090503"));};
function drawn1501421313(elmnt){;;;;;};if ( $("n1501421313") ) {drawn1501421313($("n1501421313"));};
function drawn331111912(elmnt){;;;;;};if ( $("n331111912") ) {drawn331111912($("n331111912"));};
function drawn254115281549(elmnt){;;;;;};if ( $("n254115281549") ) {drawn254115281549($("n254115281549"));};
function drawn95915918151(elmnt){;;;;;};if ( $("n95915918151") ) {drawn95915918151($("n95915918151"));};
function drawn0331732135(elmnt){;;;;;};if ( $("n0331732135") ) {drawn0331732135($("n0331732135"));};
function drawn204389371151(elmnt){;;;;;};if ( $("n204389371151") ) {drawn204389371151($("n204389371151"));};
function drawn01311111306(elmnt){;;;;;};if ( $("n01311111306") ) {drawn01311111306($("n01311111306"));};
function drawn8912141682450(elmnt){;;;;;};if ( $("n8912141682450") ) {drawn8912141682450($("n8912141682450"));};
function drawn81292424248(elmnt){;;;;;};if ( $("n81292424248") ) {drawn81292424248($("n81292424248"));};
function drawn524782512556(elmnt){;;;;;};if ( $("n524782512556") ) {drawn524782512556($("n524782512556"));};
function drawn42151404751(elmnt){;;;;;};if ( $("n42151404751") ) {drawn42151404751($("n42151404751"));};
function drawn21694295(elmnt){;;;;;};if ( $("n21694295") ) {drawn21694295($("n21694295"));};
function drawn1132357526(elmnt){;;;;;};if ( $("n1132357526") ) {drawn1132357526($("n1132357526"));};
function drawn300443813(elmnt){;;;;;};if ( $("n300443813") ) {drawn300443813($("n300443813"));};
function drawn948311251(elmnt){;;;;;};if ( $("n948311251") ) {drawn948311251($("n948311251"));};
function drawn3532471304548(elmnt){;;;;;};if ( $("n3532471304548") ) {drawn3532471304548($("n3532471304548"));};
function drawn142921096(elmnt){;;;;;};if ( $("n142921096") ) {drawn142921096($("n142921096"));};
function drawn171414105050(elmnt){;;;;;};if ( $("n171414105050") ) {drawn171414105050($("n171414105050"));};
function drawn7332203050(elmnt){;;;;;};if ( $("n7332203050") ) {drawn7332203050($("n7332203050"));};
function drawn7583343506(elmnt){;;;;;};if ( $("n7583343506") ) {drawn7583343506($("n7583343506"));};
function drawn2950072521094(elmnt){;;};if ( $("n2950072521094") ) {drawn2950072521094($("n2950072521094"));};
if ( $("n3557512230") ) {if(!$("n3557512230").onclick){$("n3557512230").onclick = function(evnt) {if(!evnt){evnt=window.event};var elmnt = this;;


elmnt.getBox = function() {
	return this.ancestors()[1];
}
elmnt.getCode = function() {
	return this.getSetting('codex');
}
new Content("celebs/column/right/survey", {
	parameters: {
		vote: elmnt.getCode()
	},
	onComplete: function(node) {
		elmnt.getBox().replace(node);
	}
});};};}
if ( $("n019653545") ) {if(!$("n019653545").onclick){$("n019653545").onclick = function(evnt) {if(!evnt){evnt=window.event};var elmnt = this;;


elmnt.getBox = function() {
	return this.ancestors()[1];
}
elmnt.getCode = function() {
	return this.getSetting('codex');
}
new Content("celebs/column/right/survey", {
	parameters: {
		vote: elmnt.getCode()
	},
	onComplete: function(node) {
		elmnt.getBox().replace(node);
	}
});};};}
if ( $("n3132300108") ) {if(!$("n3132300108").onclick){$("n3132300108").onclick = function(evnt) {if(!evnt){evnt=window.event};var elmnt = this;;


elmnt.getBox = function() {
	return this.ancestors()[1];
}
elmnt.getCode = function() {
	return this.getSetting('codex');
}
new Content("celebs/column/right/survey", {
	parameters: {
		vote: elmnt.getCode()
	},
	onComplete: function(node) {
		elmnt.getBox().replace(node);
	}
});};};}
if ( $("n144034120245") ) {if(!$("n144034120245").onclick){$("n144034120245").onclick = function(evnt) {if(!evnt){evnt=window.event};var elmnt = this;;


elmnt.getBox = function() {
	return this.ancestors()[1];
}
elmnt.getCode = function() {
	return this.getSetting('codex');
}
new Content("celebs/column/right/survey", {
	parameters: {
		vote: elmnt.getCode()
	},
	onComplete: function(node) {
		elmnt.getBox().replace(node);
	}
});};};}
function drawn3557512230(elmnt){;elmnt.observe("mouseover", function(event) {
	elmnt.addClassName("hovered");
});
elmnt.observe("mouseout", function(event) {
	elmnt.removeClassName("hovered");
});};if ( $("n3557512230") ) {drawn3557512230($("n3557512230"));};
function drawn019653545(elmnt){;elmnt.observe("mouseover", function(event) {
	elmnt.addClassName("hovered");
});
elmnt.observe("mouseout", function(event) {
	elmnt.removeClassName("hovered");
});};if ( $("n019653545") ) {drawn019653545($("n019653545"));};
function drawn3132300108(elmnt){;elmnt.observe("mouseover", function(event) {
	elmnt.addClassName("hovered");
});
elmnt.observe("mouseout", function(event) {
	elmnt.removeClassName("hovered");
});};if ( $("n3132300108") ) {drawn3132300108($("n3132300108"));};
function drawn144034120245(elmnt){;elmnt.observe("mouseover", function(event) {
	elmnt.addClassName("hovered");
});
elmnt.observe("mouseout", function(event) {
	elmnt.removeClassName("hovered");
});};if ( $("n144034120245") ) {drawn144034120245($("n144034120245"));};
function drawn431200909(elmnt){;


// Zamok zachytavaca ajax
document._responderLock = false;
Ajax.Responders.register({
	onCreate: function() {
		// Ak je odomknute,
		if ( !document._responderLock ) {
			// zamknem,
			document._responderLock = true;
			WaitMask.open({
				id: "ajax"
			});
		}
	},
	onComplete: function() {
		// Ak je zamknute,
		if ( document._responderLock ) {
			// Vypnutie
			WaitMask.close({
				id: "ajax"
			});
			// Odomknem responder
			document._responderLock = false;
		}
	}
});
;var opaqueEmbed = function(el){
	if ( el.tagName == 'EMBED' ) {
		el.setAttribute("wmode", "opaque");
	} else {
		var el_p = el.select("param[name='wmode']")[0];
		if ( el_p ) {
			el_p.setAttribute("value", "opaque");
		} else {
			var el_p = document.createElement("param");
			el_p.setAttribute("name", "wmode");
			el_p.setAttribute("value", "opaque");
			el.appendChild(el_p);
		}
	}
	var b = el.ancestors()[1];
	/*
	var bw = parseInt(b.getStyle("borderLeftWidth")) + parseInt(b.getStyle("borderLeftWidth"));
	el.setAttribute("width", b.getWidth() - bw);
	*/
	el.setAttribute("width", b.getWidth());
	el.ancestors()[0].setStyle({
		display: "block",
		overflow: "hidden",
		position: "relative",
		zIndex: 1
	});
	el.ancestors()[1].setStyle({
		visibility: "visible"
	});
}

$$("embed").each(opaqueEmbed);
$$("object").each(opaqueEmbed);};if ( $("n431200909") ) {drawn431200909($("n431200909"));};
function drawn80983201157(elmnt){;elmnt.fcUserBarUpdate = function(node) {
	elmnt.update(node);
}};if ( $("n80983201157") ) {drawn80983201157($("n80983201157"));};
function drawn61724431150(elmnt){;elmnt.observe("mouseover", function(event) {
	elmnt.addClassName("hovered");
});
elmnt.observe("mouseout", function(event) {
	elmnt.removeClassName("hovered");
});};if ( $("n61724431150") ) {drawn61724431150($("n61724431150"));};
if ( $("n153112861248") ) {if(!$("n153112861248").onclick){$("n153112861248").onclick = function(evnt) {if(!evnt){evnt=window.event};var elmnt = this;;elmnt.blur();;var tb_obj = this.form.select("input[type='text']")[0];
if (
	tb_obj.value != tb_obj.defaultValue
	&& !tb_obj.value.blank()
) {
	this.form.action+= "hladat/"+tb_obj.value;
	this.form.submit();
}};};}
function drawn153112861248(elmnt){;elmnt.observe("mouseover", function(event) {
	elmnt.addClassName("hovered");
});
elmnt.observe("mouseout", function(event) {
	elmnt.removeClassName("hovered");
});};if ( $("n153112861248") ) {drawn153112861248($("n153112861248"));};
function drawn54622912950(elmnt){;elmnt.observe("focus", function() {
	if ( this.value == this.defaultValue ) {
		this.value = '';
	}
});
elmnt.observe("blur", function() {
	if ( this.value.blank() ) {
		this.value = this.defaultValue;
	}
});};if ( $("n54622912950") ) {drawn54622912950($("n54622912950"));};
if ( $("n54622912950") ) {if(!$("n54622912950").onkeypress){$("n54622912950").onkeypress = function(evnt) {if(!evnt){evnt=window.event};var elmnt = this;;if ( evnt.keyCode != 13 ) {
	return true;
}
if (
	this.value != this.defaultValue
	&& !this.value.blank()
) {
	this.form.action+= "hladat/"+this.value;
	
	this.form.submit();
}
return false;};};}
function drawn302221634748(elmnt){;;};if ( $("n302221634748") ) {drawn302221634748($("n302221634748"));};
if ( $("n0638215027") ) {if(!$("n0638215027").onclick){$("n0638215027").onclick = function(evnt) {if(!evnt){evnt=window.event};var elmnt = this;;elmnt.toggleClassName("active");
if ( elmnt.hasClassName("active") ) {
	elmnt.ancestors()[0]._activeChild = elmnt;
} else {
	elmnt.ancestors()[0]._activeChild = null;
};
elmnt.getList = function() {
	return this.ancestors()[2].select("ul")[0];
}
new Content("celebs/column/left/list/list", {
	parameters: {
		order: "rand"
	},
	onComplete: function(node) {
		node.setOpacity(0);
		node = elmnt.getList().replace(node);
		new Effect.Opacity(elmnt.getList(), {
			duration: 0.4,
			to: 1,
			afterFinish: function() {
				
			}
		});
	}
});};};}
if ( $("n0840533017") ) {if(!$("n0840533017").onclick){$("n0840533017").onclick = function(evnt) {if(!evnt){evnt=window.event};var elmnt = this;;elmnt.toggleClassName("active");
if ( elmnt.hasClassName("active") ) {
	elmnt.ancestors()[0]._activeChild = elmnt;
} else {
	elmnt.ancestors()[0]._activeChild = null;
};

elmnt.getList = function() {
	return this.ancestors()[2].select("ul")[0];
}
new Content("celebs/column/left/list/list", {
	parameters: {
		order: "alpha"
	},
	onComplete: function(node) {
		node.setOpacity(0);
		node = elmnt.getList().replace(node);
		new Effect.Opacity(elmnt.getList(), {
			duration: 0.4,
			to: 1,
			afterFinish: function() {
				
			}
		});
	}
});};};}
function drawn0638215027(elmnt){;elmnt.fcActivate = function() {
	elmnt.ancestors()[0].childElements().each(function(el){
		if ( el.hasClassName("active") ) {
			el.removeClassName("active");
			elmnt.ancestors()[0]._activeChild = elmnt;
		}
	});
	elmnt.toggleClassName("active");
};elmnt.observe("mouseover", function(event) {
	elmnt.addClassName("hovered");
});
elmnt.observe("mouseout", function(event) {
	elmnt.removeClassName("hovered");
});};if ( $("n0638215027") ) {drawn0638215027($("n0638215027"));};
function drawn0840533017(elmnt){;elmnt.fcActivate = function() {
	elmnt.ancestors()[0].childElements().each(function(el){
		if ( el.hasClassName("active") ) {
			el.removeClassName("active");
			elmnt.ancestors()[0]._activeChild = elmnt;
		}
	});
	elmnt.toggleClassName("active");
};elmnt.observe("mouseover", function(event) {
	elmnt.addClassName("hovered");
});
elmnt.observe("mouseout", function(event) {
	elmnt.removeClassName("hovered");
});};if ( $("n0840533017") ) {drawn0840533017($("n0840533017"));};
if ( $("n19331310648") ) {if(!$("n19331310648").onmouseover){$("n19331310648").onmouseover = function(evnt) {if(!evnt){evnt=window.event};var elmnt = this;;elmnt.descendants().each(function(el){
	if ( el.hasClassName("active") ) {
		el.removeClassName("active");
		elmnt._activeChild = el;
	}
});};};}
if ( $("n19331310648") ) {if(!$("n19331310648").onmouseout){$("n19331310648").onmouseout = function(evnt) {if(!evnt){evnt=window.event};var elmnt = this;;if ( elmnt._activeChild ) {
	elmnt._activeChild.addClassName("active");
}};};}
if ( $("n1499604312") ) {if(!$("n1499604312").onclick){$("n1499604312").onclick = function(evnt) {if(!evnt){evnt=window.event};var elmnt = this;;

elmnt.getList = function() {
	return this.ancestors()[2].select("ul")[0];
}
new Content("celebs/column/left/list/list", {
	parameters: {
		mode: "prev"
	},
	onComplete: function(node) {
		p_node = elmnt.getList()
		r_node = elmnt.getList();
		b_node = elmnt.getList().ancestors()[0];
		b_node.setStyle({left: -elmnt.getList().getWidth()+"px"});
		b_node.insertBefore(node, r_node);
		new Effect.Parallel([
			new Effect.Move(elmnt.getList().ancestors()[0], {
				mode: 'relative',
				x: elmnt.getList().getWidth()
			}),
			new Effect.Opacity(p_node, {
				to: 0.2
			})
		], {
			duration: 0.5,
			afterFinish: function() {
				b_node.setStyle({left: "0px", top: "0px"});
				p_node.remove();
			}
		});
	}
});};};}
if ( $("n1098215656") ) {if(!$("n1098215656").onclick){$("n1098215656").onclick = function(evnt) {if(!evnt){evnt=window.event};var elmnt = this;;

elmnt.getList = function() {
	return this.ancestors()[2].select("ul")[0];
}
new Content("celebs/column/left/list/list", {
	parameters: {
		mode: "next"
	},
	onComplete: function(node) {
		p_node = elmnt.getList()
		r_node = elmnt.getList().nextSiblings()[0];
		b_node = elmnt.getList().ancestors()[0];
		b_node.insertBefore(node, r_node);
		new Effect.Parallel([
			new Effect.Move(elmnt.getList().ancestors()[0], {
				mode: 'relative',
				y: 0,
				x: -elmnt.getList().getWidth()
			}),
			new Effect.Opacity(p_node, {
				to: 0.2
			})
		], {
			duration: 0.5,
			afterFinish: function() {
				b_node.setStyle({left: "0px", top: "0px"});
				p_node.remove();
			}
		});
	}
});};};}
function drawn120957901949(elmnt){;;;;;};if ( $("n120957901949") ) {drawn120957901949($("n120957901949"));};
function drawn92115103372(elmnt){;;;;;};if ( $("n92115103372") ) {drawn92115103372($("n92115103372"));};
function drawn935941547(elmnt){;;;;;};if ( $("n935941547") ) {drawn935941547($("n935941547"));};
function drawn511609309250(elmnt){;;;;;};if ( $("n511609309250") ) {drawn511609309250($("n511609309250"));};
function drawn37754250(elmnt){;;;;;};if ( $("n37754250") ) {drawn37754250($("n37754250"));};
function drawn21642309150(elmnt){;;;;;};if ( $("n21642309150") ) {drawn21642309150($("n21642309150"));};
function drawn3311121214(elmnt){;;;;;};if ( $("n3311121214") ) {drawn3311121214($("n3311121214"));};
function drawn49911310131251(elmnt){;;;;;};if ( $("n49911310131251") ) {drawn49911310131251($("n49911310131251"));};
function drawn50219820153(elmnt){;;;;;};if ( $("n50219820153") ) {drawn50219820153($("n50219820153"));};
function drawn104114081333(elmnt){;;;;;};if ( $("n104114081333") ) {drawn104114081333($("n104114081333"));};
function drawn03035115049(elmnt){;;;;;};if ( $("n03035115049") ) {drawn03035115049($("n03035115049"));};
function drawn35223150524450(elmnt){;;;;;};if ( $("n35223150524450") ) {drawn35223150524450($("n35223150524450"));};
function drawn331104064125(elmnt){;;;;;};if ( $("n331104064125") ) {drawn331104064125($("n331104064125"));};
function drawn18741651250(elmnt){;;;;;};if ( $("n18741651250") ) {drawn18741651250($("n18741651250"));};
function drawn33465195(elmnt){;;;;;};if ( $("n33465195") ) {drawn33465195($("n33465195"));};
function drawn5496095211(elmnt){;;;;;};if ( $("n5496095211") ) {drawn5496095211($("n5496095211"));};
function drawn1348513310(elmnt){;;;;;};if ( $("n1348513310") ) {drawn1348513310($("n1348513310"));};
function drawn10082210208556(elmnt){;;;;;};if ( $("n10082210208556") ) {drawn10082210208556($("n10082210208556"));};
function drawn1181410113022(elmnt){;;;;;};if ( $("n1181410113022") ) {drawn1181410113022($("n1181410113022"));};
function drawn09120213911(elmnt){;;;;;};if ( $("n09120213911") ) {drawn09120213911($("n09120213911"));};
function drawn1272822124(elmnt){;;;;;};if ( $("n1272822124") ) {drawn1272822124($("n1272822124"));};
function drawn70119301(elmnt){;;;;;};if ( $("n70119301") ) {drawn70119301($("n70119301"));};
function drawn1101219112(elmnt){;;;;;};if ( $("n1101219112") ) {drawn1101219112($("n1101219112"));};
function drawn3202010501648(elmnt){;;;;;};if ( $("n3202010501648") ) {drawn3202010501648($("n3202010501648"));};
function drawn5382713552(elmnt){;;;;;};if ( $("n5382713552") ) {drawn5382713552($("n5382713552"));};
function drawn01396413912(elmnt){;;;;;};if ( $("n01396413912") ) {drawn01396413912($("n01396413912"));};
function drawn28136443152(elmnt){;;;;;};if ( $("n28136443152") ) {drawn28136443152($("n28136443152"));};
function drawn2011044049557(elmnt){;;;;;};if ( $("n2011044049557") ) {drawn2011044049557($("n2011044049557"));};
function drawn239123551330(elmnt){;;;;;};if ( $("n239123551330") ) {drawn239123551330($("n239123551330"));};
function drawn5551385108(elmnt){;;;;;};if ( $("n5551385108") ) {drawn5551385108($("n5551385108"));};
function drawn21438311231350(elmnt){;;;;;};if ( $("n21438311231350") ) {drawn21438311231350($("n21438311231350"));};
function drawn42165126053(elmnt){;;;;;};if ( $("n42165126053") ) {drawn42165126053($("n42165126053"));};
function drawn22639136(elmnt){;;;;;};if ( $("n22639136") ) {drawn22639136($("n22639136"));};
function drawn464851451252(elmnt){;;;;;};if ( $("n464851451252") ) {drawn464851451252($("n464851451252"));};
function drawn27350216(elmnt){;;;;;};if ( $("n27350216") ) {drawn27350216($("n27350216"));};
function drawn010189115(elmnt){;;;;;};if ( $("n010189115") ) {drawn010189115($("n010189115"));};
if ( $("n125512443413") ) {if(!$("n125512443413").onclick){$("n125512443413").onclick = function(evnt) {if(!evnt){evnt=window.event};var elmnt = this;;

elmnt.getList = function() {
	return this.ancestors()[2].select("ul")[0];
}
new Content("celebs/column/left/list/list", {
	parameters: {
		mode: "prev"
	},
	onComplete: function(node) {
		p_node = elmnt.getList()
		r_node = elmnt.getList();
		b_node = elmnt.getList().ancestors()[0];
		b_node.setStyle({left: -elmnt.getList().getWidth()+"px"});
		b_node.insertBefore(node, r_node);
		new Effect.Parallel([
			new Effect.Move(elmnt.getList().ancestors()[0], {
				mode: 'relative',
				x: elmnt.getList().getWidth()
			}),
			new Effect.Opacity(p_node, {
				to: 0.2
			})
		], {
			duration: 0.5,
			afterFinish: function() {
				b_node.setStyle({left: "0px", top: "0px"});
				p_node.remove();
			}
		});
	}
});};};}
if ( $("n33390153454") ) {if(!$("n33390153454").onclick){$("n33390153454").onclick = function(evnt) {if(!evnt){evnt=window.event};var elmnt = this;;

elmnt.getList = function() {
	return this.ancestors()[2].select("ul")[0];
}
new Content("celebs/column/left/list/list", {
	parameters: {
		mode: "next"
	},
	onComplete: function(node) {
		p_node = elmnt.getList()
		r_node = elmnt.getList().nextSiblings()[0];
		b_node = elmnt.getList().ancestors()[0];
		b_node.insertBefore(node, r_node);
		new Effect.Parallel([
			new Effect.Move(elmnt.getList().ancestors()[0], {
				mode: 'relative',
				y: 0,
				x: -elmnt.getList().getWidth()
			}),
			new Effect.Opacity(p_node, {
				to: 0.2
			})
		], {
			duration: 0.5,
			afterFinish: function() {
				b_node.setStyle({left: "0px", top: "0px"});
				p_node.remove();
			}
		});
	}
});};};}
function drawn5421514440748(elmnt){;;;};if ( $("n5421514440748") ) {drawn5421514440748($("n5421514440748"));};
function drawn841340456(elmnt){;;};if ( $("n841340456") ) {drawn841340456($("n841340456"));};
function drawn8090452051(elmnt){;;};if ( $("n8090452051") ) {drawn8090452051($("n8090452051"));};
function drawn13415423612(elmnt){;;};if ( $("n13415423612") ) {drawn13415423612($("n13415423612"));};
if ( $("n0611103406") ) {if(!$("n0611103406").onclick){$("n0611103406").onclick = function(evnt) {if(!evnt){evnt=window.event};var elmnt = this;;elmnt.blur();};};}
function drawn212145200045(elmnt){;;;};if ( $("n212145200045") ) {drawn212145200045($("n212145200045"));};
function drawn575152701248(elmnt){;;};if ( $("n575152701248") ) {drawn575152701248($("n575152701248"));};
function drawn004912013(elmnt){;;};if ( $("n004912013") ) {drawn004912013($("n004912013"));};
function drawn2601090410553(elmnt){;;};if ( $("n2601090410553") ) {drawn2601090410553($("n2601090410553"));};
if ( $("n554114120157") ) {if(!$("n554114120157").onclick){$("n554114120157").onclick = function(evnt) {if(!evnt){evnt=window.event};var elmnt = this;;elmnt.blur();};};}
function drawn04723150650(elmnt){;;;};if ( $("n04723150650") ) {drawn04723150650($("n04723150650"));};
function drawn1211110140(elmnt){;;};if ( $("n1211110140") ) {drawn1211110140($("n1211110140"));};
function drawn9341252412(elmnt){;;};if ( $("n9341252412") ) {drawn9341252412($("n9341252412"));};
function drawn018900456(elmnt){;;};if ( $("n018900456") ) {drawn018900456($("n018900456"));};
if ( $("n042828112753") ) {if(!$("n042828112753").onclick){$("n042828112753").onclick = function(evnt) {if(!evnt){evnt=window.event};var elmnt = this;;elmnt.blur();};};}
function drawn210240815348(elmnt){;;;};if ( $("n210240815348") ) {drawn210240815348($("n210240815348"));};
function drawn35073821(elmnt){;;};if ( $("n35073821") ) {drawn35073821($("n35073821"));};
function drawn5554311222116(elmnt){;;};if ( $("n5554311222116") ) {drawn5554311222116($("n5554311222116"));};
function drawn5157783951(elmnt){;;};if ( $("n5157783951") ) {drawn5157783951($("n5157783951"));};
if ( $("n12412264041") ) {if(!$("n12412264041").onclick){$("n12412264041").onclick = function(evnt) {if(!evnt){evnt=window.event};var elmnt = this;;elmnt.blur();};};}
function drawn2005006536(elmnt){;;;};if ( $("n2005006536") ) {drawn2005006536($("n2005006536"));};
function drawn134241248457(elmnt){;;};if ( $("n134241248457") ) {drawn134241248457($("n134241248457"));};
function drawn00111084250(elmnt){;;};if ( $("n00111084250") ) {drawn00111084250($("n00111084250"));};
function drawn88359011411(elmnt){;;};if ( $("n88359011411") ) {drawn88359011411($("n88359011411"));};
if ( $("n102151414029551") ) {if(!$("n102151414029551").onclick){$("n102151414029551").onclick = function(evnt) {if(!evnt){evnt=window.event};var elmnt = this;;elmnt.blur();};};}
function drawn212292300013(elmnt){;;};if ( $("n212292300013") ) {drawn212292300013($("n212292300013"));};
if ( $("n21412114648") ) {if(!$("n21412114648").onclick){$("n21412114648").onclick = function(evnt) {if(!evnt){evnt=window.event};var elmnt = this;;


elmnt.getBox = function() {
	return this.ancestors()[1];
}
elmnt.getCode = function() {
	return this.getSetting('codex');
}
new Content("celebs/column/right/survey", {
	parameters: {
		vote: elmnt.getCode()
	},
	onComplete: function(node) {
		elmnt.getBox().replace(node);
	}
});};};}
if ( $("n401408123") ) {if(!$("n401408123").onclick){$("n401408123").onclick = function(evnt) {if(!evnt){evnt=window.event};var elmnt = this;;


elmnt.getBox = function() {
	return this.ancestors()[1];
}
elmnt.getCode = function() {
	return this.getSetting('codex');
}
new Content("celebs/column/right/survey", {
	parameters: {
		vote: elmnt.getCode()
	},
	onComplete: function(node) {
		elmnt.getBox().replace(node);
	}
});};};}
if ( $("n16534211552") ) {if(!$("n16534211552").onclick){$("n16534211552").onclick = function(evnt) {if(!evnt){evnt=window.event};var elmnt = this;;


elmnt.getBox = function() {
	return this.ancestors()[1];
}
elmnt.getCode = function() {
	return this.getSetting('codex');
}
new Content("celebs/column/right/survey", {
	parameters: {
		vote: elmnt.getCode()
	},
	onComplete: function(node) {
		elmnt.getBox().replace(node);
	}
});};};}
if ( $("n795302215") ) {if(!$("n795302215").onclick){$("n795302215").onclick = function(evnt) {if(!evnt){evnt=window.event};var elmnt = this;;


elmnt.getBox = function() {
	return this.ancestors()[1];
}
elmnt.getCode = function() {
	return this.getSetting('codex');
}
new Content("celebs/column/right/survey", {
	parameters: {
		vote: elmnt.getCode()
	},
	onComplete: function(node) {
		elmnt.getBox().replace(node);
	}
});};};}
function drawn21412114648(elmnt){;elmnt.observe("mouseover", function(event) {
	elmnt.addClassName("hovered");
});
elmnt.observe("mouseout", function(event) {
	elmnt.removeClassName("hovered");
});};if ( $("n21412114648") ) {drawn21412114648($("n21412114648"));};
function drawn401408123(elmnt){;elmnt.observe("mouseover", function(event) {
	elmnt.addClassName("hovered");
});
elmnt.observe("mouseout", function(event) {
	elmnt.removeClassName("hovered");
});};if ( $("n401408123") ) {drawn401408123($("n401408123"));};
function drawn16534211552(elmnt){;elmnt.observe("mouseover", function(event) {
	elmnt.addClassName("hovered");
});
elmnt.observe("mouseout", function(event) {
	elmnt.removeClassName("hovered");
});};if ( $("n16534211552") ) {drawn16534211552($("n16534211552"));};
function drawn795302215(elmnt){;elmnt.observe("mouseover", function(event) {
	elmnt.addClassName("hovered");
});
elmnt.observe("mouseout", function(event) {
	elmnt.removeClassName("hovered");
});};if ( $("n795302215") ) {drawn795302215($("n795302215"));};
