
var Prototype={Version:'1.6.0.2',Browser:{IE:!!(window.attachEvent&&!window.opera),Opera:!!window.opera,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,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;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=Object.extend((function(m){return function(){return ancestor[m].apply(this,arguments)};})(property).wrap(method),{valueOf:function(){return method},toString:function(){return method.toString()}});}
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].split(",").invoke("strip");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);},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)));};}});Function.prototype.defer=Function.prototype.delay.curry(0.01);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.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('')});with(String.prototype.escapeHTML)div.appendChild(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;iterator=iterator.bind(context);try{this._each(function(value){iterator(value,index++);});}catch(e){if(e!=$break)throw e;}
return this;},eachSlice:function(number,iterator,context){iterator=iterator?iterator.bind(context):Prototype.K;var index=-number,slices=[],array=this.toArray();while((index+=number)<array.length)
slices.push(array.slice(index,index+number));return slices.collect(iterator,context);},all:function(iterator,context){iterator=iterator?iterator.bind(context):Prototype.K;var result=true;this.each(function(value,index){result=result&&!!iterator(value,index);if(!result)throw $break;});return result;},any:function(iterator,context){iterator=iterator?iterator.bind(context):Prototype.K;var result=false;this.each(function(value,index){if(result=!!iterator(value,index))
throw $break;});return result;},collect:function(iterator,context){iterator=iterator?iterator.bind(context):Prototype.K;var results=[];this.each(function(value,index){results.push(iterator(value,index));});return results;},detect:function(iterator,context){iterator=iterator.bind(context);var result;this.each(function(value,index){if(iterator(value,index)){result=value;throw $break;}});return result;},findAll:function(iterator,context){iterator=iterator.bind(context);var results=[];this.each(function(value,index){if(iterator(value,index))
results.push(value);});return results;},grep:function(filter,iterator,context){iterator=iterator?iterator.bind(context):Prototype.K;var results=[];if(Object.isString(filter))
filter=new RegExp(filter);this.each(function(value,index){if(filter.match(value))
results.push(iterator(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){iterator=iterator.bind(context);this.each(function(value,index){memo=iterator(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?iterator.bind(context):Prototype.K;var result;this.each(function(value,index){value=iterator(value,index);if(result==null||value>=result)
result=value;});return result;},min:function(iterator,context){iterator=iterator?iterator.bind(context):Prototype.K;var result;this.each(function(value,index){value=iterator(value,index);if(result==null||value<result)
result=value;});return result;},partition:function(iterator,context){iterator=iterator?iterator.bind(context):Prototype.K;var trues=[],falses=[];this.each(function(value,index){(iterator(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){iterator=iterator.bind(context);var results=[];this.each(function(value,index){if(!iterator(value,index))
results.push(value);});return results;},sortBy:function(iterator,context){iterator=iterator.bind(context);return this.map(function(value,index){return{value:value,criteria:iterator(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[];if(!(Object.isFunction(iterable)&&iterable=='[object NodeList]')&&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(', ')+']';}});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){$R(0,this,true).each(iterator);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+'='+encodeURIComponent(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){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.map(function(pair){var key=encodeURIComponent(pair.key),values=pair.value;if(values&&typeof values=='object'){if(Object.isArray(values))
return values.map(toQueryPair.curry(key)).join('&');}
return toQueryPair(key,values);}).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)){params['_method']=this.method;this.method='post';}
this.parameters=params;if(params=Object.toQueryString(params)){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);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:'');if(this.transport.overrideMimeType&&(navigator.userAgent.match(/Gecko\/(\d{4})/)||[0,2005])[1]<2005)
headers['Connection']='close';}
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'){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){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||{});}).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).style.display='none';return element;},show:function(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(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);},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);var originalAncestor=ancestor;if(element.compareDocumentPosition)
return(element.compareDocumentPosition(ancestor)&8)===8;if(element.sourceIndex&&!Prototype.Browser.Opera){var e=element.sourceIndex,a=ancestor.sourceIndex,nextAncestor=ancestor.nextSibling;if(!nextAncestor){do{ancestor=ancestor.parentNode;}
while(!(nextAncestor=ancestor.nextSibling)&&ancestor.parentNode);}
if(nextAncestor&&nextAncestor.sourceIndex)
return(e>a&&e<nextAncestor.sourceIndex);}
while(element=element.parentNode)
if(element==originalAncestor)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){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)
return{width:element.offsetWidth,height:element.offsetHeight};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';if(window.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=='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;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.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;if(element.offsetParent==document.body&&Element.getStyle(element,'position')=='absolute')break;}while(element=element.offsetParent);element=forElement;do{if(!Prototype.Browser.Opera||element.tagName=='BODY'){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]||{});source=$(source);var p=source.viewportOffset();element=$(element);var delta=[0,0];var parent=null;if(Element.getStyle(element,'position')=='absolute'){parent=element.getOffsetParent();delta=parent.viewportOffset();}
if(parent==document.body){delta[0]-=document.body.offsetLeft;delta[1]-=document.body.offsetTop;}
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':if(!Element.visible(element))return null;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){Element.Methods.getOffsetParent=Element.Methods.getOffsetParent.wrap(function(proceed,element){element=$(element);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);var position=element.getStyle('position');if(position!=='static')return proceed(element);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.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').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=='IMG'&&element.width){element.width++;element.width--;}else try{var n=document.createTextNode(' ');element.appendChild(n);element.removeChild(n);}catch(e){}
return element;};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){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,property,value;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(){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={};var B=Prototype.Browser;$w('width height').each(function(d){var D=d.capitalize();dimensions[d]=(B.WebKit&&!document.evaluate)?self['inner'+D]:(B.Opera)?document.body['client'+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);}};var Selector=Class.create({initialize:function(expression){this.expression=expression.strip();this.compileMatcher();},shouldUseXPath:function(){if(!Prototype.BrowserFeatures.XPath)return false;var e=this.expression;if(Prototype.Browser.WebKit&&(e.include("-of-type")||e.include(":empty")))
return false;if((/(\[[\w-]*?:|:checked)/).test(this.expression))
return false;return true;},compileMatcher:function(){if(this.shouldUseXPath())
return this.compileXPathMatcher();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;if(this.xpath)return document._getElementsByXPath(this.xpath,root);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)){if(as[i]){this.tokens.push([i,Object.clone(m)]);e=e.replace(m[0],'');}else{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 or translate(text(), ' \t\r\n', '') = '')]",'checked':"[@checked]",'disabled':"[@disabled]",'enabled':"[not(@disabled)]",'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+)$/))
return'['+fragment+"= "+mm[1]+']';if(mm=formula.match(/^(-?\d*)?n(([+-])(\d+))?/)){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:{laterSibling:/^\s*~\s*/,child:/^\s*>\s*/,adjacent:/^\s*\+\s*/,descendant:/^\s/,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]+)\]/,attr:/\[((?:[\w-]*:)?[\w-]+)\s*(?:([!^$*~|]?=)\s*((['"])([^\4]*?)\4|([^'"][^\]]*?)))?\]/},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:{concat:function(a,b){for(var i=0,node;node=b[i];i++)
a.push(node);return a;},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;},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++;}},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);},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;},tagName:function(nodes,root,tagName,combinator){var uTagName=tagName.toUpperCase();var results=[],h=Selector.handlers;if(nodes){if(combinator){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);},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;});},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+$/)){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+))?/)){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++){if(node.tagName=='!'||(node.firstChild&&!node.innerHTML.match(/^\s*$/)))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)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.startsWith(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,{concat:function(a,b){for(var i=0,node;node=b[i];i++)
if(node.tagName!=="!")a.push(node);return a;},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!='submit'||(!submitted&&submit!==false&&(!submit||key==submit)&&(submitted=true)))){if(key in result){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.blur();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,index){if(Object.isUndefined(index))
return this[element.type=='select-one'?'selectOne':'selectMany'](element);else{var opt,value,single=!Object.isArray(index);for(var i=0,length=element.length;i<length;i++){opt=element.options[i];value=this.optionValue(opt);if(single){if(value==index){opt.selected=true;return;}}
else opt.selected=index.include(value);}}},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){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){var node=Event.extend(event).target;return Element.extend(node.nodeType==Node.TEXT_NODE?node.parentNode: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){return{x:event.pageX||(event.clientX+
(document.documentElement.scrollLeft||document.body.scrollLeft)),y:event.pageY||(event.clientY+
(document.documentElement.scrollTop||document.body.scrollTop))};},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;}
if(window.attachEvent){window.attachEvent("onunload",destroyCache);}
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(){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();}};}})();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');var Position={includeScrollOffsets:false,prepare:function(){this.deltaX=window.pageXOffset||document.documentElement.scrollLeft||document.body.scrollLeft||0;this.deltaY=window.pageYOffset||document.documentElement.scrollTop||document.body.scrollTop||0;},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);},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;},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();


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)+.5;},reverse:function(pos){return 1-pos;},flicker:function(pos){var pos=((-Math.cos(pos*Math.PI)/4)+.75)+Math.random()/4;return pos>1?1:pos;},wobble:function(pos){return(-Math.cos(pos*Math.PI*(9*pos))/2)+.5;},pulse:function(pos,pulses){return(-Math.cos((pos*((pulses||5)-.5)*2)*Math.PI)/2)+.5;},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,fps:100,sync:false,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;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':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':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;this.render=(function(){function dispatch(effect,eventName){if(effect.options[eventName+'Internal'])
effect.options[eventName+'Internal'](effect);if(effect.options[eventName])
effect.options[eventName](effect);}
return function(pos){if(this.state==="idle"){this.state="running";dispatch(this,'beforeSetup');if(this.setup)this.setup();dispatch(this,'afterSetup');}
if(this.state==="running"){pos=(this.options.transition(pos)*this.fromToDelta)+this.options.from;this.position=pos;dispatch(this,'beforeUpdate');if(this.update)this.update(pos);dispatch(this,'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);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'});}});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',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(){if(this.element.getStyle('display')=='none'){this.cancel();return;}
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');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();if(options.offset)elementOffsets[1]+=options.offset;return new Effect.Tween(null,scrollOffsets.top,elementOffsets[1],options,function(p){scrollTo(scrollOffsets.left,p.round());});};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,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();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]||{}));};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]||{},oldOpacity=element.getInlineOpacity(),transition=options.transition||Effect.Transitions.linear,reverser=function(pos){return 1-transition((-Math.cos((pos*(options.pulses||5)*2)*Math.PI)/2)+.5);};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);


if(typeof Effect=='undefined')
throw("controls.js requires including script.aculo.us' effects.js library");var Autocompleter={};Autocompleter.Base=Class.create({baseInitialize:function(element,update,options){element=$(element);this.element=element;this.update=$(update);this.hasFocus=false;this.changed=false;this.active=false;this.index=0;this.entryCount=0;this.oldElementValue=this.element.value;if(this.setOptions)
this.setOptions(options);else
this.options=options||{};this.options.paramName=this.options.paramName||this.element.name;this.options.tokens=this.options.tokens||[];this.options.frequency=this.options.frequency||0.4;this.options.minChars=this.options.minChars||1;this.options.onShow=this.options.onShow||function(element,update){if(!update.style.position||update.style.position=='absolute'){update.style.position='absolute';Position.clone(element,update,{setHeight:false,offsetTop:element.offsetHeight});}
Effect.Appear(update,{duration:0.15});};this.options.onHide=this.options.onHide||function(element,update){new Effect.Fade(update,{duration:0.15})};if(typeof(this.options.tokens)=='string')
this.options.tokens=new Array(this.options.tokens);if(!this.options.tokens.include('\n'))
this.options.tokens.push('\n');this.observer=null;this.element.setAttribute('autocomplete','off');Element.hide(this.update);Event.observe(this.element,'blur',this.onBlur.bindAsEventListener(this));Event.observe(this.element,'keydown',this.onKeyPress.bindAsEventListener(this));},show:function(){if(Element.getStyle(this.update,'display')=='none')this.options.onShow(this.element,this.update);if(!this.iefix&&(Prototype.Browser.IE)&&(Element.getStyle(this.update,'position')=='absolute')){new Insertion.After(this.update,'<iframe id="'+this.update.id+'_iefix" '+'style="display:none;position:absolute;filter:progid:DXImageTransform.Microsoft.Alpha(opacity=0);" '+'src="javascript:false;" frameborder="0" scrolling="no"></iframe>');this.iefix=$(this.update.id+'_iefix');}
if(this.iefix)setTimeout(this.fixIEOverlapping.bind(this),50);},fixIEOverlapping:function(){Position.clone(this.update,this.iefix,{setTop:(!this.update.style.height)});this.iefix.style.zIndex=1;this.update.style.zIndex=2;Element.show(this.iefix);},hide:function(){this.stopIndicator();if(Element.getStyle(this.update,'display')!='none')this.options.onHide(this.element,this.update);if(this.iefix)Element.hide(this.iefix);},startIndicator:function(){if(this.options.indicator)Element.show(this.options.indicator);},stopIndicator:function(){if(this.options.indicator)Element.hide(this.options.indicator);},onKeyPress:function(event){if(this.active)
switch(event.keyCode){case Event.KEY_TAB:case Event.KEY_RETURN:this.selectEntry();Event.stop(event);case Event.KEY_ESC:this.hide();this.active=false;Event.stop(event);return;case Event.KEY_LEFT:case Event.KEY_RIGHT:return;case Event.KEY_UP:this.markPrevious();this.render();Event.stop(event);return;case Event.KEY_DOWN:this.markNext();this.render();Event.stop(event);return;}
else
if(event.keyCode==Event.KEY_TAB||event.keyCode==Event.KEY_RETURN||(Prototype.Browser.WebKit>0&&event.keyCode==0))return;this.changed=true;this.hasFocus=true;if(this.observer)clearTimeout(this.observer);this.observer=setTimeout(this.onObserverEvent.bind(this),this.options.frequency*1000);},activate:function(){this.changed=false;this.hasFocus=true;this.getUpdatedChoices();},onHover:function(event){var element=Event.findElement(event,'LI');if(this.index!=element.autocompleteIndex)
{this.index=element.autocompleteIndex;this.render();}
Event.stop(event);},onClick:function(event){var element=Event.findElement(event,'LI');this.index=element.autocompleteIndex;this.selectEntry();this.hide();},onBlur:function(event){setTimeout(this.hide.bind(this),250);this.hasFocus=false;this.active=false;},render:function(){if(this.entryCount>0){for(var i=0;i<this.entryCount;i++)
this.index==i?Element.addClassName(this.getEntry(i),"selected"):Element.removeClassName(this.getEntry(i),"selected");if(this.hasFocus){this.show();this.active=true;}}else{this.active=false;this.hide();}},markPrevious:function(){if(this.index>0)this.index--;else this.index=this.entryCount-1;this.getEntry(this.index).scrollIntoView(true);},markNext:function(){if(this.index<this.entryCount-1)this.index++;else this.index=0;this.getEntry(this.index).scrollIntoView(false);},getEntry:function(index){return this.update.firstChild.childNodes[index];},getCurrentEntry:function(){return this.getEntry(this.index);},selectEntry:function(){this.active=false;this.updateElement(this.getCurrentEntry());},updateElement:function(selectedElement){if(this.options.updateElement){this.options.updateElement(selectedElement);return;}
var value='';if(this.options.select){var nodes=$(selectedElement).select('.'+this.options.select)||[];if(nodes.length>0)value=Element.collectTextNodes(nodes[0],this.options.select);}else
value=Element.collectTextNodesIgnoreClass(selectedElement,'informal');var bounds=this.getTokenBounds();if(bounds[0]!=-1){var newValue=this.element.value.substr(0,bounds[0]);var whitespace=this.element.value.substr(bounds[0]).match(/^\s+/);if(whitespace)
newValue+=whitespace[0];this.element.value=newValue+value+this.element.value.substr(bounds[1]);}else{this.element.value=value;}
this.oldElementValue=this.element.value;this.element.focus();if(this.options.afterUpdateElement)
this.options.afterUpdateElement(this.element,selectedElement);},updateChoices:function(choices){if(!this.changed&&this.hasFocus){this.update.innerHTML=choices;Element.cleanWhitespace(this.update);Element.cleanWhitespace(this.update.down());if(this.update.firstChild&&this.update.down().childNodes){this.entryCount=this.update.down().childNodes.length;for(var i=0;i<this.entryCount;i++){var entry=this.getEntry(i);entry.autocompleteIndex=i;this.addObservers(entry);}}else{this.entryCount=0;}
this.stopIndicator();this.index=0;if(this.entryCount==1&&this.options.autoSelect){this.selectEntry();this.hide();}else{this.render();}}},addObservers:function(element){Event.observe(element,"mouseover",this.onHover.bindAsEventListener(this));Event.observe(element,"click",this.onClick.bindAsEventListener(this));},onObserverEvent:function(){this.changed=false;this.tokenBounds=null;if(this.getToken().length>=this.options.minChars){this.getUpdatedChoices();}else{this.active=false;this.hide();}
this.oldElementValue=this.element.value;},getToken:function(){var bounds=this.getTokenBounds();return this.element.value.substring(bounds[0],bounds[1]).strip();},getTokenBounds:function(){if(null!=this.tokenBounds)return this.tokenBounds;var value=this.element.value;if(value.strip().empty())return[-1,0];var diff=arguments.callee.getFirstDifferencePos(value,this.oldElementValue);var offset=(diff==this.oldElementValue.length?1:0);var prevTokenPos=-1,nextTokenPos=value.length;var tp;for(var index=0,l=this.options.tokens.length;index<l;++index){tp=value.lastIndexOf(this.options.tokens[index],diff+offset-1);if(tp>prevTokenPos)prevTokenPos=tp;tp=value.indexOf(this.options.tokens[index],diff+offset);if(-1!=tp&&tp<nextTokenPos)nextTokenPos=tp;}
return(this.tokenBounds=[prevTokenPos+1,nextTokenPos]);}});Autocompleter.Base.prototype.getTokenBounds.getFirstDifferencePos=function(newS,oldS){var boundary=Math.min(newS.length,oldS.length);for(var index=0;index<boundary;++index)
if(newS[index]!=oldS[index])
return index;return boundary;};Ajax.Autocompleter=Class.create(Autocompleter.Base,{initialize:function(element,update,url,options){this.baseInitialize(element,update,options);this.options.asynchronous=true;this.options.onComplete=this.onComplete.bind(this);this.options.defaultParams=this.options.parameters||null;this.url=url;},getUpdatedChoices:function(){this.startIndicator();var entry=encodeURIComponent(this.options.paramName)+'='+
encodeURIComponent(this.getToken());this.options.parameters=this.options.callback?this.options.callback(this.element,entry):entry;if(this.options.defaultParams)
this.options.parameters+='&'+this.options.defaultParams;new Ajax.Request(this.url,this.options);},onComplete:function(request){this.updateChoices(request.responseText);}});Autocompleter.Local=Class.create(Autocompleter.Base,{initialize:function(element,update,array,options){this.baseInitialize(element,update,options);this.options.array=array;},getUpdatedChoices:function(){this.updateChoices(this.options.selector(this));},setOptions:function(options){this.options=Object.extend({choices:10,partialSearch:true,partialChars:2,ignoreCase:true,fullSearch:false,selector:function(instance){var ret=[];var partial=[];var entry=instance.getToken();var count=0;for(var i=0;i<instance.options.array.length&&ret.length<instance.options.choices;i++){var elem=instance.options.array[i];var foundPos=instance.options.ignoreCase?elem.toLowerCase().indexOf(entry.toLowerCase()):elem.indexOf(entry);while(foundPos!=-1){if(foundPos==0&&elem.length!=entry.length){ret.push("<li><strong>"+elem.substr(0,entry.length)+"</strong>"+
elem.substr(entry.length)+"</li>");break;}else if(entry.length>=instance.options.partialChars&&instance.options.partialSearch&&foundPos!=-1){if(instance.options.fullSearch||/\s/.test(elem.substr(foundPos-1,1))){partial.push("<li>"+elem.substr(0,foundPos)+"<strong>"+
elem.substr(foundPos,entry.length)+"</strong>"+elem.substr(foundPos+entry.length)+"</li>");break;}}
foundPos=instance.options.ignoreCase?elem.toLowerCase().indexOf(entry.toLowerCase(),foundPos+1):elem.indexOf(entry,foundPos+1);}}
if(partial.length)
ret=ret.concat(partial.slice(0,instance.options.choices-ret.length));return"<ul>"+ret.join('')+"</ul>";}},options||{});}});Field.scrollFreeActivate=function(field){setTimeout(function(){Field.activate(field);},1);};Ajax.InPlaceEditor=Class.create({initialize:function(element,url,options){this.url=url;this.element=element=$(element);this.prepareOptions();this._controls={};arguments.callee.dealWithDeprecatedOptions(options);Object.extend(this.options,options||{});if(!this.options.formId&&this.element.id){this.options.formId=this.element.id+'-inplaceeditor';if($(this.options.formId))
this.options.formId='';}
if(this.options.externalControl)
this.options.externalControl=$(this.options.externalControl);if(!this.options.externalControl)
this.options.externalControlOnly=false;this._originalBackground=this.element.getStyle('background-color')||'transparent';this.element.title=this.options.clickToEditText;this._boundCancelHandler=this.handleFormCancellation.bind(this);this._boundComplete=(this.options.onComplete||Prototype.emptyFunction).bind(this);this._boundFailureHandler=this.handleAJAXFailure.bind(this);this._boundSubmitHandler=this.handleFormSubmission.bind(this);this._boundWrapperHandler=this.wrapUp.bind(this);this.registerListeners();},checkForEscapeOrReturn:function(e){if(!this._editing||e.ctrlKey||e.altKey||e.shiftKey)return;if(Event.KEY_ESC==e.keyCode)
this.handleFormCancellation(e);else if(Event.KEY_RETURN==e.keyCode)
this.handleFormSubmission(e);},createControl:function(mode,handler,extraClasses){var control=this.options[mode+'Control'];var text=this.options[mode+'Text'];if('button'==control){var btn=document.createElement('input');btn.type='submit';btn.value=text;btn.className='editor_'+mode+'_button';if('cancel'==mode)
btn.onclick=this._boundCancelHandler;this._form.appendChild(btn);this._controls[mode]=btn;}else if('link'==control){var link=document.createElement('a');link.href='#';link.appendChild(document.createTextNode(text));link.onclick='cancel'==mode?this._boundCancelHandler:this._boundSubmitHandler;link.className='editor_'+mode+'_link';if(extraClasses)
link.className+=' '+extraClasses;this._form.appendChild(link);this._controls[mode]=link;}},createEditField:function(){var text=(this.options.loadTextURL?this.options.loadingText:this.getText());var fld;if(1>=this.options.rows&&!/\r|\n/.test(this.getText())){fld=document.createElement('input');fld.type='text';var size=this.options.size||this.options.cols||0;if(0<size)fld.size=size;}else{fld=document.createElement('textarea');fld.rows=(1>=this.options.rows?this.options.autoRows:this.options.rows);fld.cols=this.options.cols||40;}
fld.name=this.options.paramName;fld.value=text;fld.className='editor_field';if(this.options.submitOnBlur)
fld.onblur=this._boundSubmitHandler;this._controls.editor=fld;if(this.options.loadTextURL)
this.loadExternalText();this._form.appendChild(this._controls.editor);},createForm:function(){var ipe=this;function addText(mode,condition){var text=ipe.options['text'+mode+'Controls'];if(!text||condition===false)return;ipe._form.appendChild(document.createTextNode(text));};this._form=$(document.createElement('form'));this._form.id=this.options.formId;this._form.addClassName(this.options.formClassName);this._form.onsubmit=this._boundSubmitHandler;this.createEditField();if('textarea'==this._controls.editor.tagName.toLowerCase())
this._form.appendChild(document.createElement('br'));if(this.options.onFormCustomization)
this.options.onFormCustomization(this,this._form);addText('Before',this.options.okControl||this.options.cancelControl);this.createControl('ok',this._boundSubmitHandler);addText('Between',this.options.okControl&&this.options.cancelControl);this.createControl('cancel',this._boundCancelHandler,'editor_cancel');addText('After',this.options.okControl||this.options.cancelControl);},destroy:function(){if(this._oldInnerHTML)
this.element.innerHTML=this._oldInnerHTML;this.leaveEditMode();this.unregisterListeners();},enterEditMode:function(e){if(this._saving||this._editing)return;this._editing=true;this.triggerCallback('onEnterEditMode');if(this.options.externalControl)
this.options.externalControl.hide();this.element.hide();this.createForm();this.element.parentNode.insertBefore(this._form,this.element);if(!this.options.loadTextURL)
this.postProcessEditField();if(e)Event.stop(e);},enterHover:function(e){if(this.options.hoverClassName)
this.element.addClassName(this.options.hoverClassName);if(this._saving)return;this.triggerCallback('onEnterHover');},getText:function(){return this.element.innerHTML.unescapeHTML();},handleAJAXFailure:function(transport){this.triggerCallback('onFailure',transport);if(this._oldInnerHTML){this.element.innerHTML=this._oldInnerHTML;this._oldInnerHTML=null;}},handleFormCancellation:function(e){this.wrapUp();if(e)Event.stop(e);},handleFormSubmission:function(e){var form=this._form;var value=$F(this._controls.editor);this.prepareSubmission();var params=this.options.callback(form,value)||'';if(Object.isString(params))
params=params.toQueryParams();params.editorId=this.element.id;if(this.options.htmlResponse){var options=Object.extend({evalScripts:true},this.options.ajaxOptions);Object.extend(options,{parameters:params,onComplete:this._boundWrapperHandler,onFailure:this._boundFailureHandler});new Ajax.Updater({success:this.element},this.url,options);}else{var options=Object.extend({method:'get'},this.options.ajaxOptions);Object.extend(options,{parameters:params,onComplete:this._boundWrapperHandler,onFailure:this._boundFailureHandler});new Ajax.Request(this.url,options);}
if(e)Event.stop(e);},leaveEditMode:function(){this.element.removeClassName(this.options.savingClassName);this.removeForm();this.leaveHover();this.element.style.backgroundColor=this._originalBackground;this.element.show();if(this.options.externalControl)
this.options.externalControl.show();this._saving=false;this._editing=false;this._oldInnerHTML=null;this.triggerCallback('onLeaveEditMode');},leaveHover:function(e){if(this.options.hoverClassName)
this.element.removeClassName(this.options.hoverClassName);if(this._saving)return;this.triggerCallback('onLeaveHover');},loadExternalText:function(){this._form.addClassName(this.options.loadingClassName);this._controls.editor.disabled=true;var options=Object.extend({method:'get'},this.options.ajaxOptions);Object.extend(options,{parameters:'editorId='+encodeURIComponent(this.element.id),onComplete:Prototype.emptyFunction,onSuccess:function(transport){this._form.removeClassName(this.options.loadingClassName);var text=transport.responseText;if(this.options.stripLoadedTextTags)
text=text.stripTags();this._controls.editor.value=text;this._controls.editor.disabled=false;this.postProcessEditField();}.bind(this),onFailure:this._boundFailureHandler});new Ajax.Request(this.options.loadTextURL,options);},postProcessEditField:function(){var fpc=this.options.fieldPostCreation;if(fpc)
$(this._controls.editor)['focus'==fpc?'focus':'activate']();},prepareOptions:function(){this.options=Object.clone(Ajax.InPlaceEditor.DefaultOptions);Object.extend(this.options,Ajax.InPlaceEditor.DefaultCallbacks);[this._extraDefaultOptions].flatten().compact().each(function(defs){Object.extend(this.options,defs);}.bind(this));},prepareSubmission:function(){this._saving=true;this.removeForm();this.leaveHover();this.showSaving();},registerListeners:function(){this._listeners={};var listener;$H(Ajax.InPlaceEditor.Listeners).each(function(pair){listener=this[pair.value].bind(this);this._listeners[pair.key]=listener;if(!this.options.externalControlOnly)
this.element.observe(pair.key,listener);if(this.options.externalControl)
this.options.externalControl.observe(pair.key,listener);}.bind(this));},removeForm:function(){if(!this._form)return;this._form.remove();this._form=null;this._controls={};},showSaving:function(){this._oldInnerHTML=this.element.innerHTML;this.element.innerHTML=this.options.savingText;this.element.addClassName(this.options.savingClassName);this.element.style.backgroundColor=this._originalBackground;this.element.show();},triggerCallback:function(cbName,arg){if('function'==typeof this.options[cbName]){this.options[cbName](this,arg);}},unregisterListeners:function(){$H(this._listeners).each(function(pair){if(!this.options.externalControlOnly)
this.element.stopObserving(pair.key,pair.value);if(this.options.externalControl)
this.options.externalControl.stopObserving(pair.key,pair.value);}.bind(this));},wrapUp:function(transport){this.leaveEditMode();this._boundComplete(transport,this.element);}});Object.extend(Ajax.InPlaceEditor.prototype,{dispose:Ajax.InPlaceEditor.prototype.destroy});Ajax.InPlaceCollectionEditor=Class.create(Ajax.InPlaceEditor,{initialize:function($super,element,url,options){this._extraDefaultOptions=Ajax.InPlaceCollectionEditor.DefaultOptions;$super(element,url,options);},createEditField:function(){var list=document.createElement('select');list.name=this.options.paramName;list.size=1;this._controls.editor=list;this._collection=this.options.collection||[];if(this.options.loadCollectionURL)
this.loadCollection();else
this.checkForExternalText();this._form.appendChild(this._controls.editor);},loadCollection:function(){this._form.addClassName(this.options.loadingClassName);this.showLoadingText(this.options.loadingCollectionText);var options=Object.extend({method:'get'},this.options.ajaxOptions);Object.extend(options,{parameters:'editorId='+encodeURIComponent(this.element.id),onComplete:Prototype.emptyFunction,onSuccess:function(transport){var js=transport.responseText.strip();if(!/^\[.*\]$/.test(js))
throw('Server returned an invalid collection representation.');this._collection=eval(js);this.checkForExternalText();}.bind(this),onFailure:this.onFailure});new Ajax.Request(this.options.loadCollectionURL,options);},showLoadingText:function(text){this._controls.editor.disabled=true;var tempOption=this._controls.editor.firstChild;if(!tempOption){tempOption=document.createElement('option');tempOption.value='';this._controls.editor.appendChild(tempOption);tempOption.selected=true;}
tempOption.update((text||'').stripScripts().stripTags());},checkForExternalText:function(){this._text=this.getText();if(this.options.loadTextURL)
this.loadExternalText();else
this.buildOptionList();},loadExternalText:function(){this.showLoadingText(this.options.loadingText);var options=Object.extend({method:'get'},this.options.ajaxOptions);Object.extend(options,{parameters:'editorId='+encodeURIComponent(this.element.id),onComplete:Prototype.emptyFunction,onSuccess:function(transport){this._text=transport.responseText.strip();this.buildOptionList();}.bind(this),onFailure:this.onFailure});new Ajax.Request(this.options.loadTextURL,options);},buildOptionList:function(){this._form.removeClassName(this.options.loadingClassName);this._collection=this._collection.map(function(entry){return 2===entry.length?entry:[entry,entry].flatten();});var marker=('value'in this.options)?this.options.value:this._text;var textFound=this._collection.any(function(entry){return entry[0]==marker;}.bind(this));this._controls.editor.update('');var option;this._collection.each(function(entry,index){option=document.createElement('option');option.value=entry[0];option.selected=textFound?entry[0]==marker:0==index;option.appendChild(document.createTextNode(entry[1]));this._controls.editor.appendChild(option);}.bind(this));this._controls.editor.disabled=false;Field.scrollFreeActivate(this._controls.editor);}});Ajax.InPlaceEditor.prototype.initialize.dealWithDeprecatedOptions=function(options){if(!options)return;function fallback(name,expr){if(name in options||expr===undefined)return;options[name]=expr;};fallback('cancelControl',(options.cancelLink?'link':(options.cancelButton?'button':options.cancelLink==options.cancelButton==false?false:undefined)));fallback('okControl',(options.okLink?'link':(options.okButton?'button':options.okLink==options.okButton==false?false:undefined)));fallback('highlightColor',options.highlightcolor);fallback('highlightEndColor',options.highlightendcolor);};Object.extend(Ajax.InPlaceEditor,{DefaultOptions:{ajaxOptions:{},autoRows:3,cancelControl:'link',cancelText:'cancel',clickToEditText:'Click to edit',externalControl:null,externalControlOnly:false,fieldPostCreation:'activate',formClassName:'inplaceeditor-form',formId:null,highlightColor:'#ffff99',highlightEndColor:'#ffffff',hoverClassName:'',htmlResponse:true,loadingClassName:'inplaceeditor-loading',loadingText:'Loading...',okControl:'button',okText:'ok',paramName:'value',rows:1,savingClassName:'inplaceeditor-saving',savingText:'Saving...',size:0,stripLoadedTextTags:false,submitOnBlur:false,textAfterControls:'',textBeforeControls:'',textBetweenControls:''},DefaultCallbacks:{callback:function(form){return Form.serialize(form);},onComplete:function(transport,element){new Effect.Highlight(element,{startcolor:this.options.highlightColor,keepBackgroundImage:true});},onEnterEditMode:null,onEnterHover:function(ipe){ipe.element.style.backgroundColor=ipe.options.highlightColor;if(ipe._effect)
ipe._effect.cancel();},onFailure:function(transport,ipe){alert('Error communication with the server: '+transport.responseText.stripTags());},onFormCustomization:null,onLeaveEditMode:null,onLeaveHover:function(ipe){ipe._effect=new Effect.Highlight(ipe.element,{startcolor:ipe.options.highlightColor,endcolor:ipe.options.highlightEndColor,restorecolor:ipe._originalBackground,keepBackgroundImage:true});}},Listeners:{click:'enterEditMode',keydown:'checkForEscapeOrReturn',mouseover:'enterHover',mouseout:'leaveHover'}});Ajax.InPlaceCollectionEditor.DefaultOptions={loadingCollectionText:'Loading options...'};Form.Element.DelayedObserver=Class.create({initialize:function(element,delay,callback){this.delay=delay||0.5;this.element=$(element);this.callback=callback;this.timer=null;this.lastValue=$F(this.element);Event.observe(this.element,'keyup',this.delayedListener.bindAsEventListener(this));},delayedListener:function(event){if(this.lastValue==$F(this.element))return;if(this.timer)clearTimeout(this.timer);this.timer=setTimeout(this.onTimerEvent.bind(this),this.delay*1000);this.lastValue=$F(this.element);},onTimerEvent:function(){this.timer=null;this.callback(this.element,$F(this.element));}});Object.extend(Autocompleter.Base.prototype,{baseInitialize:function(element,update,options){this.superBaseInitialize(element,update,options);this.ignoreHoverEvent=false;},superBaseInitialize:Autocompleter.Base.prototype.baseInitialize,scrollIntoViewUp:function(){var entry=this.getEntry(this.index);if(entry.viewportOffset().top<0){entry.scrollIntoView(true);this.ignoreHoverEvent=true;setTimeout(this.resetIgnoreHover,500);}},scrollIntoViewDown:function(){var entry=this.getEntry(this.index);var windowHeight=window.innerHeight||document.body.clientHeight;var currentHeight=entry.viewportOffset().top+entry.getHeight();if(windowHeight-currentHeight<0){this.getEntry(this.index).scrollIntoView(false);this.ignoreHoverEvent=true;setTimeout(this.resetIgnoreHover,500);}},markPrevious:function(){if(this.index>0){this.index--
this.scrollIntoViewUp();}else{this.index=this.entryCount-1;this.scrollIntoViewDown();}},markNext:function(){if(this.index<this.entryCount-1){this.index++
this.scrollIntoViewDown();}else{this.index=0;this.scrollIntoViewUp();}},resetIgnoreHover:function(){this.ignoreHoverEvent=false;},onHover:function(event){if(!this.ignoreHoverEvent){var element=Event.findElement(event,'LI');if(this.index!=element.autocompleteIndex){this.index=element.autocompleteIndex;this.render();}}else{this.ignoreHoverEvent=false;}
Event.stop(event);}});


var config=new Object();var tt_Debug=true
var tt_Enabled=true
var TagsToTip=true
config.Above=false
config.BgColor='#FFCE8C'
config.BgImg=''
config.BorderColor='#FDCA65'
config.BorderStyle='solid'
config.BorderWidth=1
config.CenterMouse=false
config.ClickClose=false
config.ClickSticky=false
config.CloseBtn=false
config.CloseBtnColors=['#990000','#FFFFFF','#DD3333','#FFFFFF']
config.CloseBtnText='&nbsp;X&nbsp;'
config.CopyContent=true
config.Delay=400
config.Duration=0
config.Exclusive=false
config.FadeIn=100
config.FadeOut=100
config.FadeInterval=30
config.Fix=null
config.FollowMouse=true
config.FontColor='#000044'
config.FontFace='Verdana,Geneva,sans-serif'
config.FontSize='8pt'
config.FontWeight='normal'
config.Height=0
config.JumpHorz=false
config.JumpVert=true
config.Left=false
config.OffsetX=14
config.OffsetY=8
config.Opacity=100
config.Padding=3
config.Shadow=false
config.ShadowColor='#C0C0C0'
config.ShadowWidth=5
config.Sticky=false
config.TextAlign='left'
config.Title=''
config.TitleAlign='left'
config.TitleBgColor=''
config.TitleFontColor='#FFFFFF'
config.TitleFontFace=''
config.TitleFontSize=''
config.TitlePadding=2
config.Width=0
function Tip()
{tt_Tip(arguments,null);}
function TagToTip()
{var t2t=tt_GetElt(arguments[0]);if(t2t)
tt_Tip(arguments,t2t);}
function UnTip()
{tt_OpReHref();if(tt_aV[DURATION]<0&&(tt_iState&0x2))
tt_tDurt.Timer("tt_HideInit()",-tt_aV[DURATION],true);else if(!(tt_aV[STICKY]&&(tt_iState&0x2)))
tt_HideInit();}
var tt_aElt=new Array(10),tt_aV=new Array(),tt_sContent,tt_t2t,tt_t2tDad,tt_musX,tt_musY,tt_over,tt_x,tt_y,tt_w,tt_h;function tt_Extension()
{tt_ExtCmdEnum();tt_aExt[tt_aExt.length]=this;return this;}
function tt_SetTipPos(x,y)
{var css=tt_aElt[0].style;tt_x=x;tt_y=y;css.left=x+"px";css.top=y+"px";if(tt_ie56)
{var ifrm=tt_aElt[tt_aElt.length-1];if(ifrm)
{ifrm.style.left=css.left;ifrm.style.top=css.top;}}}
function tt_HideInit()
{if(tt_iState)
{tt_ExtCallFncs(0,"HideInit");tt_iState&=~(0x4|0x8);if(tt_flagOpa&&tt_aV[FADEOUT])
{tt_tFade.EndTimer();if(tt_opa)
{var n=Math.round(tt_aV[FADEOUT]/(tt_aV[FADEINTERVAL]*(tt_aV[OPACITY]/tt_opa)));tt_Fade(tt_opa,tt_opa,0,n);return;}}
tt_tHide.Timer("tt_Hide();",1,false);}}
function tt_Hide()
{if(tt_db&&tt_iState)
{tt_OpReHref();if(tt_iState&0x2)
{tt_aElt[0].style.visibility="hidden";tt_ExtCallFncs(0,"Hide");}
tt_tShow.EndTimer();tt_tHide.EndTimer();tt_tDurt.EndTimer();tt_tFade.EndTimer();if(!tt_op&&!tt_ie)
{tt_tWaitMov.EndTimer();tt_bWait=false;}
if(tt_aV[CLICKCLOSE]||tt_aV[CLICKSTICKY])
tt_RemEvtFnc(document,"mouseup",tt_OnLClick);tt_ExtCallFncs(0,"Kill");if(tt_t2t&&!tt_aV[COPYCONTENT])
tt_UnEl2Tip();tt_iState=0;tt_over=null;tt_ResetMainDiv();if(tt_aElt[tt_aElt.length-1])
tt_aElt[tt_aElt.length-1].style.display="none";}}
function tt_GetElt(id)
{return(document.getElementById?document.getElementById(id):document.all?document.all[id]:null);}
function tt_GetDivW(el)
{return(el?(el.offsetWidth||el.style.pixelWidth||0):0);}
function tt_GetDivH(el)
{return(el?(el.offsetHeight||el.style.pixelHeight||0):0);}
function tt_GetScrollX()
{return(window.pageXOffset||(tt_db?(tt_db.scrollLeft||0):0));}
function tt_GetScrollY()
{return(window.pageYOffset||(tt_db?(tt_db.scrollTop||0):0));}
function tt_GetClientW()
{return tt_GetWndCliSiz("Width");}
function tt_GetClientH()
{return tt_GetWndCliSiz("Height");}
function tt_GetEvtX(e)
{return(e?((typeof(e.pageX)!=tt_u)?e.pageX:(e.clientX+tt_GetScrollX())):0);}
function tt_GetEvtY(e)
{return(e?((typeof(e.pageY)!=tt_u)?e.pageY:(e.clientY+tt_GetScrollY())):0);}
function tt_AddEvtFnc(el,sEvt,PFnc)
{if(el)
{if(el.addEventListener)
el.addEventListener(sEvt,PFnc,false);else
el.attachEvent("on"+sEvt,PFnc);}}
function tt_RemEvtFnc(el,sEvt,PFnc)
{if(el)
{if(el.removeEventListener)
el.removeEventListener(sEvt,PFnc,false);else
el.detachEvent("on"+sEvt,PFnc);}}
function tt_GetDad(el)
{return(el.parentNode||el.parentElement||el.offsetParent);}
function tt_MovDomNode(el,dadFrom,dadTo)
{if(dadFrom)
dadFrom.removeChild(el);if(dadTo)
dadTo.appendChild(el);}
var tt_aExt=new Array(),tt_db,tt_op,tt_ie,tt_ie56,tt_bBoxOld,tt_body,tt_ovr_,tt_flagOpa,tt_maxPosX,tt_maxPosY,tt_iState=0,tt_opa,tt_bJmpVert,tt_bJmpHorz,tt_elDeHref,tt_tShow=new Number(0),tt_tHide=new Number(0),tt_tDurt=new Number(0),tt_tFade=new Number(0),tt_tWaitMov=new Number(0),tt_bWait=false,tt_u="undefined";function tt_Init()
{tt_MkCmdEnum();if(!tt_Browser()||!tt_MkMainDiv())
return;tt_IsW3cBox();tt_OpaSupport();tt_AddEvtFnc(document,"mousemove",tt_Move);if(TagsToTip||tt_Debug)
tt_SetOnloadFnc();tt_AddEvtFnc(window,"unload",tt_Hide);}
function tt_MkCmdEnum()
{var n=0;for(var i in config)
eval("window."+i.toString().toUpperCase()+" = "+n++);tt_aV.length=n;}
function tt_Browser()
{var n,nv,n6,w3c;n=navigator.userAgent.toLowerCase(),nv=navigator.appVersion;tt_op=(document.defaultView&&typeof(eval("w"+"indow"+"."+"o"+"p"+"er"+"a"))!=tt_u);tt_ie=n.indexOf("msie")!=-1&&document.all&&!tt_op;if(tt_ie)
{var ieOld=(!document.compatMode||document.compatMode=="BackCompat");tt_db=!ieOld?document.documentElement:(document.body||null);if(tt_db)
tt_ie56=parseFloat(nv.substring(nv.indexOf("MSIE")+5))>=5.5&&typeof document.body.style.maxHeight==tt_u;}
else
{tt_db=document.documentElement||document.body||(document.getElementsByTagName?document.getElementsByTagName("body")[0]:null);if(!tt_op)
{n6=document.defaultView&&typeof document.defaultView.getComputedStyle!=tt_u;w3c=!n6&&document.getElementById;}}
tt_body=(document.getElementsByTagName?document.getElementsByTagName("body")[0]:(document.body||null));if(tt_ie||n6||tt_op||w3c)
{if(tt_body&&tt_db)
{if(document.attachEvent||document.addEventListener)
return true;}
else
tt_Err("wz_tooltip.js must be included INSIDE the body section,"
+" immediately after the opening <body> tag.",false);}
tt_db=null;return false;}
function tt_MkMainDiv()
{if(tt_body.insertAdjacentHTML)
tt_body.insertAdjacentHTML("afterBegin",tt_MkMainDivHtm());else if(typeof tt_body.innerHTML!=tt_u&&document.createElement&&tt_body.appendChild)
tt_body.appendChild(tt_MkMainDivDom());if(window.tt_GetMainDivRefs&&tt_GetMainDivRefs())
return true;tt_db=null;return false;}
function tt_MkMainDivHtm()
{return('<div id="WzTtDiV"></div>'+
(tt_ie56?('<iframe id="WzTtIfRm" src="javascript:false" scrolling="no" frameborder="0" style="filter:Alpha(opacity=0);position:absolute;top:0px;left:0px;display:none;"></iframe>'):''));}
function tt_MkMainDivDom()
{var el=document.createElement("div");if(el)
el.id="WzTtDiV";return el;}
function tt_GetMainDivRefs()
{tt_aElt[0]=tt_GetElt("WzTtDiV");if(tt_ie56&&tt_aElt[0])
{tt_aElt[tt_aElt.length-1]=tt_GetElt("WzTtIfRm");if(!tt_aElt[tt_aElt.length-1])
tt_aElt[0]=null;}
if(tt_aElt[0])
{var css=tt_aElt[0].style;css.visibility="hidden";css.position="absolute";css.overflow="hidden";return true;}
return false;}
function tt_ResetMainDiv()
{tt_SetTipPos(0,0);tt_aElt[0].innerHTML="";tt_aElt[0].style.width="0px";tt_h=0;}
function tt_IsW3cBox()
{var css=tt_aElt[0].style;css.padding="10px";css.width="40px";tt_bBoxOld=(tt_GetDivW(tt_aElt[0])==40);css.padding="0px";tt_ResetMainDiv();}
function tt_OpaSupport()
{var css=tt_body.style;tt_flagOpa=(typeof(css.KhtmlOpacity)!=tt_u)?2:(typeof(css.KHTMLOpacity)!=tt_u)?3:(typeof(css.MozOpacity)!=tt_u)?4:(typeof(css.opacity)!=tt_u)?5:(typeof(css.filter)!=tt_u)?1:0;}
function tt_SetOnloadFnc()
{tt_AddEvtFnc(document,"DOMContentLoaded",tt_HideSrcTags);tt_AddEvtFnc(window,"load",tt_HideSrcTags);if(tt_body.attachEvent)
tt_body.attachEvent("onreadystatechange",function(){if(tt_body.readyState=="complete")
tt_HideSrcTags();});if(/WebKit|KHTML/i.test(navigator.userAgent))
{var t=setInterval(function(){if(/loaded|complete/.test(document.readyState))
{clearInterval(t);tt_HideSrcTags();}},10);}}
function tt_HideSrcTags()
{if(!window.tt_HideSrcTags||window.tt_HideSrcTags.done)
return;window.tt_HideSrcTags.done=true;if(!tt_HideSrcTagsRecurs(tt_body))
tt_Err("There are HTML elements to be converted to tooltips.\nIf you"
+" want these HTML elements to be automatically hidden, you"
+" must edit wz_tooltip.js, and set TagsToTip in the global"
+" tooltip configuration to true.",true);}
function tt_HideSrcTagsRecurs(dad)
{var ovr,asT2t;var a=dad.childNodes||dad.children||null;for(var i=a?a.length:0;i;)
{--i;if(!tt_HideSrcTagsRecurs(a[i]))
return false;ovr=a[i].getAttribute?(a[i].getAttribute("onmouseover")||a[i].getAttribute("onclick")):(typeof a[i].onmouseover=="function")?(a[i].onmouseover||a[i].onclick):null;if(ovr)
{asT2t=ovr.toString().match(/TagToTip\s*\(\s*'[^'.]+'\s*[\),]/);if(asT2t&&asT2t.length)
{if(!tt_HideSrcTag(asT2t[0]))
return false;}}}
return true;}
function tt_HideSrcTag(sT2t)
{var id,el;id=sT2t.replace(/.+'([^'.]+)'.+/,"$1");el=tt_GetElt(id);if(el)
{if(tt_Debug&&!TagsToTip)
return false;else
el.style.display="none";}
else
tt_Err("Invalid ID\n'"+id+"'\npassed to TagToTip()."
+" There exists no HTML element with that ID.",true);return true;}
function tt_Tip(arg,t2t)
{if(!tt_db||(tt_iState&0x8))
return;if(tt_iState)
tt_Hide();if(!tt_Enabled)
return;tt_t2t=t2t;if(!tt_ReadCmds(arg))
return;tt_iState=0x1|0x4;tt_AdaptConfig1();tt_MkTipContent(arg);tt_MkTipSubDivs();tt_FormatTip();tt_bJmpVert=false;tt_bJmpHorz=false;tt_maxPosX=tt_GetClientW()+tt_GetScrollX()-tt_w-1;tt_maxPosY=tt_GetClientH()+tt_GetScrollY()-tt_h-1;tt_AdaptConfig2();tt_OverInit();tt_ShowInit();tt_Move();}
function tt_ReadCmds(a)
{var i;i=0;for(var j in config)
tt_aV[i++]=config[j];if(a.length&1)
{for(i=a.length-1;i>0;i-=2)
tt_aV[a[i-1]]=a[i];return true;}
tt_Err("Incorrect call of Tip() or TagToTip().\n"
+"Each command must be followed by a value.",true);return false;}
function tt_AdaptConfig1()
{tt_ExtCallFncs(0,"LoadConfig");if(!tt_aV[TITLEBGCOLOR].length)
tt_aV[TITLEBGCOLOR]=tt_aV[BORDERCOLOR];if(!tt_aV[TITLEFONTCOLOR].length)
tt_aV[TITLEFONTCOLOR]=tt_aV[BGCOLOR];if(!tt_aV[TITLEFONTFACE].length)
tt_aV[TITLEFONTFACE]=tt_aV[FONTFACE];if(!tt_aV[TITLEFONTSIZE].length)
tt_aV[TITLEFONTSIZE]=tt_aV[FONTSIZE];if(tt_aV[CLOSEBTN])
{if(!tt_aV[CLOSEBTNCOLORS])
tt_aV[CLOSEBTNCOLORS]=new Array("","","","");for(var i=4;i;)
{--i;if(!tt_aV[CLOSEBTNCOLORS][i].length)
tt_aV[CLOSEBTNCOLORS][i]=(i&1)?tt_aV[TITLEFONTCOLOR]:tt_aV[TITLEBGCOLOR];}
if(!tt_aV[TITLE].length)
tt_aV[TITLE]=" ";}
if(tt_aV[OPACITY]==100&&typeof tt_aElt[0].style.MozOpacity!=tt_u&&!Array.every)
tt_aV[OPACITY]=99;if(tt_aV[FADEIN]&&tt_flagOpa&&tt_aV[DELAY]>100)
tt_aV[DELAY]=Math.max(tt_aV[DELAY]-tt_aV[FADEIN],100);}
function tt_AdaptConfig2()
{if(tt_aV[CENTERMOUSE])
{tt_aV[OFFSETX]-=((tt_w-(tt_aV[SHADOW]?tt_aV[SHADOWWIDTH]:0))>>1);tt_aV[JUMPHORZ]=false;}}
function tt_MkTipContent(a)
{if(tt_t2t)
{if(tt_aV[COPYCONTENT])
tt_sContent=tt_t2t.innerHTML;else
tt_sContent="";}
else
tt_sContent=a[0];tt_ExtCallFncs(0,"CreateContentString");}
function tt_MkTipSubDivs()
{var sCss='position:relative;margin:0px;padding:0px;border-width:0px;left:0px;top:0px;line-height:normal;width:auto;',sTbTrTd=' cellspacing="0" cellpadding="0" border="0" style="'+sCss+'"><tbody style="'+sCss+'"><tr><td ';tt_aElt[0].style.width=tt_GetClientW()+"px";tt_aElt[0].innerHTML=(''
+(tt_aV[TITLE].length?('<div id="WzTiTl" style="position:relative;z-index:1;">'
+'<table id="WzTiTlTb"'+sTbTrTd+'id="WzTiTlI" style="'+sCss+'">'
+tt_aV[TITLE]
+'</td>'
+(tt_aV[CLOSEBTN]?('<td align="right" style="'+sCss
+'text-align:right;">'
+'<span id="WzClOsE" style="position:relative;left:2px;padding-left:2px;padding-right:2px;'
+'cursor:'+(tt_ie?'hand':'pointer')
+';" onmouseover="tt_OnCloseBtnOver(1)" onmouseout="tt_OnCloseBtnOver(0)" onclick="tt_HideInit()">'
+tt_aV[CLOSEBTNTEXT]
+'</span></td>'):'')
+'</tr></tbody></table></div>'):'')
+'<div id="WzBoDy" style="position:relative;z-index:0;">'
+'<table'+sTbTrTd+'id="WzBoDyI" style="'+sCss+'">'
+tt_sContent
+'</td></tr></tbody></table></div>'
+(tt_aV[SHADOW]?('<div id="WzTtShDwR" style="position:absolute;overflow:hidden;"></div>'
+'<div id="WzTtShDwB" style="position:relative;overflow:hidden;"></div>'):''));tt_GetSubDivRefs();if(tt_t2t&&!tt_aV[COPYCONTENT])
tt_El2Tip();tt_ExtCallFncs(0,"SubDivsCreated");}
function tt_GetSubDivRefs()
{var aId=new Array("WzTiTl","WzTiTlTb","WzTiTlI","WzClOsE","WzBoDy","WzBoDyI","WzTtShDwB","WzTtShDwR");for(var i=aId.length;i;--i)
tt_aElt[i]=tt_GetElt(aId[i-1]);}
function tt_FormatTip()
{var css,w,h,pad=tt_aV[PADDING],padT,wBrd=tt_aV[BORDERWIDTH],iOffY,iOffSh,iAdd=(pad+wBrd)<<1;if(tt_aV[TITLE].length)
{padT=tt_aV[TITLEPADDING];css=tt_aElt[1].style;css.background=tt_aV[TITLEBGCOLOR];css.paddingTop=css.paddingBottom=padT+"px";css.paddingLeft=css.paddingRight=(padT+2)+"px";css=tt_aElt[3].style;css.color=tt_aV[TITLEFONTCOLOR];if(tt_aV[WIDTH]==-1)
css.whiteSpace="nowrap";css.fontFamily=tt_aV[TITLEFONTFACE];css.fontSize=tt_aV[TITLEFONTSIZE];css.fontWeight="bold";css.textAlign=tt_aV[TITLEALIGN];if(tt_aElt[4])
{css=tt_aElt[4].style;css.background=tt_aV[CLOSEBTNCOLORS][0];css.color=tt_aV[CLOSEBTNCOLORS][1];css.fontFamily=tt_aV[TITLEFONTFACE];css.fontSize=tt_aV[TITLEFONTSIZE];css.fontWeight="bold";}
if(tt_aV[WIDTH]>0)
tt_w=tt_aV[WIDTH];else
{tt_w=tt_GetDivW(tt_aElt[3])+tt_GetDivW(tt_aElt[4]);if(tt_aElt[4])
tt_w+=pad;if(tt_aV[WIDTH]<-1&&tt_w>-tt_aV[WIDTH])
tt_w=-tt_aV[WIDTH];}
iOffY=-wBrd;}
else
{tt_w=0;iOffY=0;}
css=tt_aElt[5].style;css.top=iOffY+"px";if(wBrd)
{css.borderColor=tt_aV[BORDERCOLOR];css.borderStyle=tt_aV[BORDERSTYLE];css.borderWidth=wBrd+"px";}
if(tt_aV[BGCOLOR].length)
css.background=tt_aV[BGCOLOR];if(tt_aV[BGIMG].length)
css.backgroundImage="url("+tt_aV[BGIMG]+")";css.padding=pad+"px";css.textAlign=tt_aV[TEXTALIGN];if(tt_aV[HEIGHT])
{css.overflow="auto";if(tt_aV[HEIGHT]>0)
css.height=(tt_aV[HEIGHT]+iAdd)+"px";else
tt_h=iAdd-tt_aV[HEIGHT];}
css=tt_aElt[6].style;css.color=tt_aV[FONTCOLOR];css.fontFamily=tt_aV[FONTFACE];css.fontSize=tt_aV[FONTSIZE];css.fontWeight=tt_aV[FONTWEIGHT];css.textAlign=tt_aV[TEXTALIGN];if(tt_aV[WIDTH]>0)
w=tt_aV[WIDTH];else if(tt_aV[WIDTH]==-1&&tt_w)
w=tt_w;else
{w=tt_GetDivW(tt_aElt[6]);if(tt_aV[WIDTH]<-1&&w>-tt_aV[WIDTH])
w=-tt_aV[WIDTH];}
if(w>tt_w)
tt_w=w;tt_w+=iAdd;if(tt_aV[SHADOW])
{tt_w+=tt_aV[SHADOWWIDTH];iOffSh=Math.floor((tt_aV[SHADOWWIDTH]*4)/3);css=tt_aElt[7].style;css.top=iOffY+"px";css.left=iOffSh+"px";css.width=(tt_w-iOffSh-tt_aV[SHADOWWIDTH])+"px";css.height=tt_aV[SHADOWWIDTH]+"px";css.background=tt_aV[SHADOWCOLOR];css=tt_aElt[8].style;css.top=iOffSh+"px";css.left=(tt_w-tt_aV[SHADOWWIDTH])+"px";css.width=tt_aV[SHADOWWIDTH]+"px";css.background=tt_aV[SHADOWCOLOR];}
else
iOffSh=0;tt_SetTipOpa(tt_aV[FADEIN]?0:tt_aV[OPACITY]);tt_FixSize(iOffY,iOffSh);}
function tt_FixSize(iOffY,iOffSh)
{var wIn,wOut,h,add,pad=tt_aV[PADDING],wBrd=tt_aV[BORDERWIDTH],i;tt_aElt[0].style.width=tt_w+"px";tt_aElt[0].style.pixelWidth=tt_w;wOut=tt_w-((tt_aV[SHADOW])?tt_aV[SHADOWWIDTH]:0);wIn=wOut;if(!tt_bBoxOld)
wIn-=(pad+wBrd)<<1;tt_aElt[5].style.width=wIn+"px";if(tt_aElt[1])
{wIn=wOut-((tt_aV[TITLEPADDING]+2)<<1);if(!tt_bBoxOld)
wOut=wIn;tt_aElt[1].style.width=wOut+"px";tt_aElt[2].style.width=wIn+"px";}
if(tt_h)
{h=tt_GetDivH(tt_aElt[5]);if(h>tt_h)
{if(!tt_bBoxOld)
tt_h-=(pad+wBrd)<<1;tt_aElt[5].style.height=tt_h+"px";}}
tt_h=tt_GetDivH(tt_aElt[0])+iOffY;if(tt_aElt[8])
tt_aElt[8].style.height=(tt_h-iOffSh)+"px";i=tt_aElt.length-1;if(tt_aElt[i])
{tt_aElt[i].style.width=tt_w+"px";tt_aElt[i].style.height=tt_h+"px";}}
function tt_DeAlt(el)
{var aKid;if(el)
{if(el.alt)
el.alt="";if(el.title)
el.title="";aKid=el.childNodes||el.children||null;if(aKid)
{for(var i=aKid.length;i;)
tt_DeAlt(aKid[--i]);}}}
function tt_OpDeHref(el)
{if(!tt_op)
return;if(tt_elDeHref)
tt_OpReHref();while(el)
{if(el.hasAttribute&&el.hasAttribute("href"))
{el.t_href=el.getAttribute("href");el.t_stats=window.status;el.removeAttribute("href");el.style.cursor="hand";tt_AddEvtFnc(el,"mousedown",tt_OpReHref);window.status=el.t_href;tt_elDeHref=el;break;}
el=tt_GetDad(el);}}
function tt_OpReHref()
{if(tt_elDeHref)
{tt_elDeHref.setAttribute("href",tt_elDeHref.t_href);tt_RemEvtFnc(tt_elDeHref,"mousedown",tt_OpReHref);window.status=tt_elDeHref.t_stats;tt_elDeHref=null;}}
function tt_El2Tip()
{var css=tt_t2t.style;tt_t2t.t_cp=css.position;tt_t2t.t_cl=css.left;tt_t2t.t_ct=css.top;tt_t2t.t_cd=css.display;tt_t2tDad=tt_GetDad(tt_t2t);tt_MovDomNode(tt_t2t,tt_t2tDad,tt_aElt[6]);css.display="block";css.position="static";css.left=css.top=css.marginLeft=css.marginTop="0px";}
function tt_UnEl2Tip()
{var css=tt_t2t.style;css.display=tt_t2t.t_cd;tt_MovDomNode(tt_t2t,tt_GetDad(tt_t2t),tt_t2tDad);css.position=tt_t2t.t_cp;css.left=tt_t2t.t_cl;css.top=tt_t2t.t_ct;tt_t2tDad=null;}
function tt_OverInit()
{if(window.event)
tt_over=window.event.target||window.event.srcElement;else
tt_over=tt_ovr_;tt_DeAlt(tt_over);tt_OpDeHref(tt_over);}
function tt_ShowInit()
{tt_tShow.Timer("tt_Show()",tt_aV[DELAY],true);if(tt_aV[CLICKCLOSE]||tt_aV[CLICKSTICKY])
tt_AddEvtFnc(document,"mouseup",tt_OnLClick);}
function tt_Show()
{var css=tt_aElt[0].style;css.zIndex=Math.max((window.dd&&dd.z)?(dd.z+2):0,1010);if(tt_aV[STICKY]||!tt_aV[FOLLOWMOUSE])
tt_iState&=~0x4;if(tt_aV[EXCLUSIVE])
tt_iState|=0x8;if(tt_aV[DURATION]>0)
tt_tDurt.Timer("tt_HideInit()",tt_aV[DURATION],true);tt_ExtCallFncs(0,"Show")
css.visibility="visible";tt_iState|=0x2;if(tt_aV[FADEIN])
tt_Fade(0,0,tt_aV[OPACITY],Math.round(tt_aV[FADEIN]/tt_aV[FADEINTERVAL]));tt_ShowIfrm();}
function tt_ShowIfrm()
{if(tt_ie56)
{var ifrm=tt_aElt[tt_aElt.length-1];if(ifrm)
{var css=ifrm.style;css.zIndex=tt_aElt[0].style.zIndex-1;css.display="block";}}}
function tt_Move(e)
{if(e)
tt_ovr_=e.target||e.srcElement;e=e||window.event;if(e)
{tt_musX=tt_GetEvtX(e);tt_musY=tt_GetEvtY(e);}
if(tt_iState&0x4)
{if(!tt_op&&!tt_ie)
{if(tt_bWait)
return;tt_bWait=true;tt_tWaitMov.Timer("tt_bWait = false;",1,true);}
if(tt_aV[FIX])
{tt_iState&=~0x4;tt_PosFix();}
else if(!tt_ExtCallFncs(e,"MoveBefore"))
tt_SetTipPos(tt_Pos(0),tt_Pos(1));tt_ExtCallFncs([tt_musX,tt_musY],"MoveAfter")}}
function tt_Pos(iDim)
{var iX,bJmpMod,cmdAlt,cmdOff,cx,iMax,iScrl,iMus,bJmp;if(iDim)
{bJmpMod=tt_aV[JUMPVERT];cmdAlt=ABOVE;cmdOff=OFFSETY;cx=tt_h;iMax=tt_maxPosY;iScrl=tt_GetScrollY();iMus=tt_musY;bJmp=tt_bJmpVert;}
else
{bJmpMod=tt_aV[JUMPHORZ];cmdAlt=LEFT;cmdOff=OFFSETX;cx=tt_w;iMax=tt_maxPosX;iScrl=tt_GetScrollX();iMus=tt_musX;bJmp=tt_bJmpHorz;}
if(bJmpMod)
{if(tt_aV[cmdAlt]&&(!bJmp||tt_CalcPosAlt(iDim)>=iScrl+16))
iX=tt_PosAlt(iDim);else if(!tt_aV[cmdAlt]&&bJmp&&tt_CalcPosDef(iDim)>iMax-16)
iX=tt_PosAlt(iDim);else
iX=tt_PosDef(iDim);}
else
{iX=iMus;if(tt_aV[cmdAlt])
iX-=cx+tt_aV[cmdOff]-(tt_aV[SHADOW]?tt_aV[SHADOWWIDTH]:0);else
iX+=tt_aV[cmdOff];}
if(iX>iMax)
iX=bJmpMod?tt_PosAlt(iDim):iMax;if(iX<iScrl)
iX=bJmpMod?tt_PosDef(iDim):iScrl;return iX;}
function tt_PosDef(iDim)
{if(iDim)
tt_bJmpVert=tt_aV[ABOVE];else
tt_bJmpHorz=tt_aV[LEFT];return tt_CalcPosDef(iDim);}
function tt_PosAlt(iDim)
{if(iDim)
tt_bJmpVert=!tt_aV[ABOVE];else
tt_bJmpHorz=!tt_aV[LEFT];return tt_CalcPosAlt(iDim);}
function tt_CalcPosDef(iDim)
{return iDim?(tt_musY+tt_aV[OFFSETY]):(tt_musX+tt_aV[OFFSETX]);}
function tt_CalcPosAlt(iDim)
{var cmdOff=iDim?OFFSETY:OFFSETX;var dx=tt_aV[cmdOff]-(tt_aV[SHADOW]?tt_aV[SHADOWWIDTH]:0);if(tt_aV[cmdOff]>0&&dx<=0)
dx=1;return((iDim?(tt_musY-tt_h):(tt_musX-tt_w))-dx);}
function tt_PosFix()
{var iX,iY;if(typeof(tt_aV[FIX][0])=="number")
{iX=tt_aV[FIX][0];iY=tt_aV[FIX][1];}
else
{if(typeof(tt_aV[FIX][0])=="string")
el=tt_GetElt(tt_aV[FIX][0]);else
el=tt_aV[FIX][0];iX=tt_aV[FIX][1];iY=tt_aV[FIX][2];if(!tt_aV[ABOVE]&&el)
iY+=tt_GetDivH(el);for(;el;el=el.offsetParent)
{iX+=el.offsetLeft||0;iY+=el.offsetTop||0;}}
if(tt_aV[ABOVE])
iY-=tt_h;tt_SetTipPos(iX,iY);}
function tt_Fade(a,now,z,n)
{if(n)
{now+=Math.round((z-now)/n);if((z>a)?(now>=z):(now<=z))
now=z;else
tt_tFade.Timer("tt_Fade("
+a+","+now+","+z+","+(n-1)
+")",tt_aV[FADEINTERVAL],true);}
now?tt_SetTipOpa(now):tt_Hide();}
function tt_SetTipOpa(opa)
{tt_SetOpa(tt_aElt[5],opa);if(tt_aElt[1])
tt_SetOpa(tt_aElt[1],opa);if(tt_aV[SHADOW])
{opa=Math.round(opa*0.8);tt_SetOpa(tt_aElt[7],opa);tt_SetOpa(tt_aElt[8],opa);}}
function tt_OnCloseBtnOver(iOver)
{var css=tt_aElt[4].style;iOver<<=1;css.background=tt_aV[CLOSEBTNCOLORS][iOver];css.color=tt_aV[CLOSEBTNCOLORS][iOver+1];}
function tt_OnLClick(e)
{e=e||window.event;if(!((e.button&&e.button&2)||(e.which&&e.which==3)))
{if(tt_aV[CLICKSTICKY]&&(tt_iState&0x4))
{tt_aV[STICKY]=true;tt_iState&=~0x4;}
else if(tt_aV[CLICKCLOSE])
tt_HideInit();}}
function tt_Int(x)
{var y;return(isNaN(y=parseInt(x))?0:y);}
Number.prototype.Timer=function(s,iT,bUrge)
{if(!this.value||bUrge)
this.value=window.setTimeout(s,iT);}
Number.prototype.EndTimer=function()
{if(this.value)
{window.clearTimeout(this.value);this.value=0;}}
function tt_GetWndCliSiz(s)
{var db,y=window["inner"+s],sC="client"+s,sN="number";if(typeof y==sN)
{var y2;return(((db=document.body)&&typeof(y2=db[sC])==sN&&y2&&y2<=y)?y2:((db=document.documentElement)&&typeof(y2=db[sC])==sN&&y2&&y2<=y)?y2:y);}
return(((db=document.documentElement)&&(y=db[sC]))?y:document.body[sC]);}
function tt_SetOpa(el,opa)
{var css=el.style;tt_opa=opa;if(tt_flagOpa==1)
{if(opa<100)
{if(typeof(el.filtNo)==tt_u)
el.filtNo=css.filter;var bVis=css.visibility!="hidden";css.zoom="100%";if(!bVis)
css.visibility="visible";css.filter="alpha(opacity="+opa+")";if(!bVis)
css.visibility="hidden";}
else if(typeof(el.filtNo)!=tt_u)
css.filter=el.filtNo;}
else
{opa/=100.0;switch(tt_flagOpa)
{case 2:css.KhtmlOpacity=opa;break;case 3:css.KHTMLOpacity=opa;break;case 4:css.MozOpacity=opa;break;case 5:css.opacity=opa;break;}}}
function tt_Err(sErr,bIfDebug)
{if(tt_Debug||!bIfDebug)
alert("Tooltip Script Error Message:\n\n"+sErr);}
function tt_ExtCmdEnum()
{var s;for(var i in config)
{s="window."+i.toString().toUpperCase();if(eval("typeof("+s+") == tt_u"))
{eval(s+" = "+tt_aV.length);tt_aV[tt_aV.length]=null;}}}
function tt_ExtCallFncs(arg,sFnc)
{var b=false;for(var i=tt_aExt.length;i;)
{--i;var fnc=tt_aExt[i]["On"+sFnc];if(fnc&&fnc(arg))
b=true;}
return b;}
tt_Init();

(function(K,Aa){function fb(){for(var a=b.errorInfo,d=b.plugins,f,k,n,t,s=0;s<b.gallery.length;++s){f=b.gallery[s];k=false;n=null;switch(f.player){case "flv":case "swf":d.fla||(n="fla");break;case "qt":d.qt||(n="qt");break;case "wmp":if(b.isMac)if(d.qt&&d.f4m)f.player="qt";else n="qtf4m";else d.wmp||(n="wmp");break;case "qtwmp":if(d.qt)f.player="qt";else if(d.wmp)f.player="wmp";else n="qtwmp";break}if(n)if(b.options.handleUnsupported=="link"){switch(n){case "qtf4m":t="shared";n=[a.qt.url,a.qt.name,
a.f4m.url,a.f4m.name];break;case "qtwmp":t="either";n=[a.qt.url,a.qt.name,a.wmp.url,a.wmp.name];break;default:t="single";n=[a[n].url,a[n].name]}f.player="html";f.content='<div class="sb-message">'+Qa(b.lang.errors[t],n)+"</div>"}else k=true;else if(f.player=="inline")if(t=gb.exec(f.content))if(t=z(t[1]))f.content=t.innerHTML;else k=true;else k=true;else if(f.player=="swf"||f.player=="flv"){t=f.options&&f.options.flashVersion||b.options.flashVersion;if(b.flash&&!b.flash.hasFlashPlayerVersion(t)){f.width=
310;f.height=177}}if(k){b.gallery.splice(s,1);if(s<b.current)--b.current;else if(s==b.current)b.current=s>0?s-1:s;--s}}}function Ia(a){if(b.options.enableKeys)(a?ha:ma)(document,"keydown",hb)}function hb(a){if(!(a.metaKey||a.shiftKey||a.altKey||a.ctrlKey)){var d;switch(ib(a)){case 81:case 88:case 27:d=b.close;break;case 37:d=b.previous;break;case 39:d=b.next;break;case 32:d=typeof R=="number"?b.pause:b.play;break}if(d){Ja(a);d()}}}function Ra(a){Ia(false);var d=b.getCurrent(),f=d.player=="inline"?
"html":d.player;if(typeof b[f]!="function")throw"unknown player "+f;if(a){b.player.remove();b.revertOptions();b.applyOptions(d.options||{})}b.player=new b[f](d,b.playerId);if(b.gallery.length>1){d=b.gallery[b.current+1]||b.gallery[0];if(d.player=="img")(new Image).src=d.content;d=b.gallery[b.current-1]||b.gallery[b.gallery.length-1];if(d.player=="img")(new Image).src=d.content}b.skin.onLoad(a,jb)}function jb(){if(S)if(typeof b.player.ready!="undefined")var a=setInterval(function(){if(S){if(b.player.ready){clearInterval(a);
a=null;b.skin.onReady(Sa)}}else{clearInterval(a);a=null}},10);else b.skin.onReady(Sa)}function Sa(){if(S){b.player.append(b.skin.body,b.dimensions);b.skin.onShow(kb)}}function kb(){if(S){b.player.onLoad&&b.player.onLoad();b.options.onFinish(b.getCurrent());b.isPaused()||b.play();Ia(true)}}function va(){return(new Date).getTime()}function Y(a,d){for(var f in d)a[f]=d[f];return a}function T(a,d){for(var f=0,k=a.length,n=a[0];f<k&&d.call(n,f,n)!==false;n=a[++f]);}function Qa(a,d){return a.replace(/\{(\w+?)\}/g,
function(f,k){return d[k]})}function Ba(){}function z(a){return document.getElementById(a)}function na(a){a.parentNode.removeChild(a)}function lb(){var a=document.body,d=document.createElement("div");Ca=typeof d.style.opacity==="string";d.style.position="fixed";d.style.margin=0;d.style.top="20px";a.appendChild(d,a.firstChild);Da=d.offsetTop==20;a.removeChild(d)}function Ta(a){return[wa.pointerX(a),wa.pointerY(a)]}function Ja(a){wa.stop(a)}function ib(a){return a.keyCode}function ha(a,d,f){wa.observe(a,
d,f)}function ma(a,d,f){wa.stopObserving(a,d,f)}function Ua(){if(!Ka){try{document.documentElement.doScroll("left")}catch(a){setTimeout(Ua,1);return}b.load()}}function mb(){if(document.readyState==="complete")return b.load();if(document.addEventListener){document.addEventListener("DOMContentLoaded",qa,false);K.addEventListener("load",b.load,false)}else if(document.attachEvent){document.attachEvent("onreadystatechange",qa);K.attachEvent("onload",b.load);var a=false;try{a=K.frameElement===null}catch(d){}document.documentElement.doScroll&&
a&&Ua()}}function Va(a){b.open(this);b.gallery.length&&Ja(a)}function nb(){M={x:0,y:0,startX:null,startY:null}}function Wa(){var a=b.dimensions;Y(ca.style,{height:a.innerHeight+"px",width:a.innerWidth+"px"})}function ob(){nb();var a=["position:absolute","cursor:"+(b.isGecko?"-moz-grab":"move"),"background-color:"+(b.isIE?"#fff;filter:alpha(opacity=0)":"transparent")].join(";");b.appendHTML(b.skin.body,'<div id="'+Xa+'" style="'+a+'"></div>');ca=z(Xa);Wa();ha(ca,"mousedown",Ya)}function pb(){if(ca){ma(ca,
"mousedown",Ya);na(ca);ca=null}ia=null}function Ya(a){Ja(a);a=Ta(a);M.startX=a[0];M.startY=a[1];ia=z(b.player.id);ha(document,"mousemove",Za);ha(document,"mouseup",$a);if(b.isGecko)ca.style.cursor="-moz-grabbing"}function Za(a){var d=b.player,f=b.dimensions;a=Ta(a);var k=a[0]-M.startX;M.startX+=k;M.x=Math.max(Math.min(0,M.x+k),f.innerWidth-d.width);a=a[1]-M.startY;M.startY+=a;M.y=Math.max(Math.min(0,M.y+a),f.innerHeight-d.height);Y(ia.style,{left:M.x+"px",top:M.y+"px"})}function $a(){ma(document,
"mousemove",Za);ma(document,"mouseup",$a);if(b.isGecko)ca.style.cursor="-moz-grab"}function U(a,d,f,k,n){var t=d=="opacity",s=t?b.setOpacity:function(C,N){C.style[d]=""+N+"px"};if(k==0||!t&&!b.options.animate||t&&!b.options.animateFade){s(a,f);n&&n()}else{var O=parseFloat(b.getStyle(a,d))||0,x=f-O;if(x==0)n&&n();else{k*=1E3;var u=va(),X=b.ease,V=u+k,I,da=setInterval(function(){I=va();if(I>=V){clearInterval(da);da=null;s(a,f);n&&n()}else s(a,O+X((I-u)/k)*x)},10)}}}function ab(){Z.style.height=b.getWindowSize("Height")+
"px";Z.style.width=b.getWindowSize("Width")+"px"}function La(){Z.style.top=document.documentElement.scrollTop+"px";Z.style.left=document.documentElement.scrollLeft+"px"}function bb(a){if(a)T(Ma,function(d,f){f[0].style.visibility=f[1]||""});else{Ma=[];T(b.options.troubleElements,function(d){T(document.getElementsByTagName(d),function(f){Ma.push([f,f.style.visibility]);f.style.visibility="hidden"})})}}function ea(a,d){if(a=z("sb-nav-"+a))a.style.display=d?"":"none"}function cb(a,d){var f=z("sb-loading"),
k=b.getCurrent().player;k=k=="img"||k=="html";if(a){b.setOpacity(f,0);f.style.display="block";a=function(){b.clearOpacity(f);d&&d()};k?U(f,"opacity",1,b.options.fadeDuration,a):a()}else{a=function(){f.style.display="none";b.clearOpacity(f);d&&d()};k?U(f,"opacity",0,b.options.fadeDuration,a):a()}}function qb(a){var d=b.getCurrent();z("sb-title-inner").innerHTML='<a class="fl_right" title="{Schliessen}" onclick="Shadowbox.close()"><img src="images/Exit2.png" style="margin:4px" class="link noborder"></a>' + d.title||"";var f,k,n,t,s;if(b.options.displayNav){f=true;d=b.gallery.length;if(d>1)if(b.options.continuous)k=s=true;else{k=d-1>b.current;
s=b.current>0}if(b.options.slideshowDelay>0&&b.hasNext()){t=!b.isPaused();n=!t}}else f=k=n=t=s=false;ea("close",f);ea("next",k);ea("play",n);ea("pause",t);ea("previous",s);k="";if(b.options.displayCounter&&b.gallery.length>1){d=b.gallery.length;if(b.options.counterType=="skip"){n=0;s=d;t=parseInt(b.options.counterLimit)||0;if(t<d&&t>2){s=Math.floor(t/2);n=b.current-s;if(n<0)n+=d;s=b.current+(t-s);if(s>d)s-=d}for(;n!=s;){if(n==d)n=0;k+='<a onclick="Shadowbox.change('+n+');"';if(n==b.current)k+=' class="sb-counter-current"';
k+=">"+n++ +"</a>"}}else k=[b.current+1,b.lang.of,d].join(" ")}z("sb-counter").innerHTML=k;a()}function rb(a){var d=z("sb-title-inner"),f=z("sb-info-inner");d.style.visibility=f.style.visibility="";d.innerHTML!=""&&U(d,"marginTop",0,0.35);U(f,"marginTop",0,0.35,a)}function sb(a,d){var f=z("sb-title"),k=z("sb-info");f=f.offsetHeight;k=k.offsetHeight;var n=z("sb-title-inner"),t=z("sb-info-inner");a=a?0.35:0;U(n,"marginTop",f,a);U(t,"marginTop",k*-1,a,function(){n.style.visibility=t.style.visibility=
"hidden";d()})}function xa(a,d,f,k){var n=z("sb-wrapper-inner");f=f?b.options.resizeDuration:0;U(ja,"top",d,f);U(n,"height",a,f,k)}function ya(a,d,f,k){f=f?b.options.resizeDuration:0;U(ja,"left",d,f);U(ja,"width",a,f,k)}function Na(a,d){var f=z("sb-body-inner");a=parseInt(a);d=parseInt(d);var k=ja.offsetHeight-f.offsetHeight;f=ja.offsetWidth-f.offsetWidth;var n=parseInt(b.options.viewportPadding)||20;return b.setDimensions(a,d,fa.offsetHeight,fa.offsetWidth,k,f,n)}var b={version:"3.0"},F=navigator.userAgent.toLowerCase();
if(F.indexOf("windows")>-1||F.indexOf("win32")>-1)b.isWindows=true;else if(F.indexOf("macintosh")>-1||F.indexOf("mac os x")>-1)b.isMac=true;else if(F.indexOf("linux")>-1)b.isLinux=true;b.isIE=F.indexOf("msie")>-1;b.isIE6=F.indexOf("msie 6")>-1;b.isIE7=F.indexOf("msie 7")>-1;b.isGecko=F.indexOf("gecko")>-1&&F.indexOf("safari")==-1;b.isWebKit=F.indexOf("applewebkit/")>-1;var gb=/#(.+)$/,tb=/^(light|shadow)box\[(.*?)\]/i,ub=/\s*([a-z_]*?)\s*=\s*(.+)\s*/,vb=/[0-9a-z]+$/i,wb=/(.+\/)shadowbox\.js/i,S=false,
db=false,eb={},ga=0,Ea,R;b.playerId="sb-player";b.current=-1;b.dimensions=null;b.ease=function(a){return 1+Math.pow(a-1,3)};b.errorInfo={fla:{name:"Flash",url:"http://www.adobe.com/products/flashplayer/"},qt:{name:"QuickTime",url:"http://www.apple.com/quicktime/download/"},wmp:{name:"Windows Media Player",url:"http://www.microsoft.com/windows/windowsmedia/"},f4m:{name:"Flip4Mac",url:"http://www.flip4mac.com/wmv_download.htm"}};b.gallery=[];b.path=null;b.player=null;b.options={animate:true,animateFade:true,
autoplayMovies:true,continuous:false,enableKeys:true,flashParams:{bgcolor:"#000000",allowfullscreen:true},flashVars:{},flashVersion:"9.0.115",handleOversize:"resize",handleUnsupported:"link",onChange:Ba,onClose:Ba,onFinish:Ba,onOpen:Ba,showMovieControls:true,skipSetup:false,slideshowDelay:0,viewportPadding:20};b.getCurrent=function(){return b.current>-1?b.gallery[b.current]:null};b.hasNext=function(){return b.gallery.length>1&&(b.current!=b.gallery.length-1||b.options.continuous)};b.isOpen=function(){return S};
b.isPaused=function(){return R=="pause"};b.applyOptions=function(a){eb=Y({},b.options);Y(b.options,a)};b.revertOptions=function(){Y(b.options,eb)};b.init=function(a){if(!db){db=true;b.skin.options&&Y(b.options,b.skin.options);a&&Y(b.options,a);if(!b.path)for(var d=document.getElementsByTagName("script"),f=0,k=d.length;f<k;++f)if(a=wb.exec(d[f].src)){b.path=a[1];break}mb()}};b.open=function(a){if(!S){a=b.makeGallery(a);b.gallery=a[0];b.current=a[1];a=b.getCurrent();if(a!=null){b.applyOptions(a.options||
{});fb();if(b.gallery.length){a=b.getCurrent();if(b.options.onOpen(a)!==false){S=true;b.skin.onOpen(a,Ra)}}}}};b.close=function(){if(S){S=false;if(b.player){b.player.remove();b.player=null}if(typeof R=="number"){clearTimeout(R);R=null}ga=0;Ia(false);b.options.onClose(b.getCurrent());b.skin.onClose();b.revertOptions()}};b.play=function(){if(b.hasNext()){ga||(ga=b.options.slideshowDelay*1E3);if(ga){Ea=va();R=setTimeout(function(){ga=Ea=0;b.next()},ga);b.skin.onPlay&&b.skin.onPlay()}}};b.pause=function(){if(typeof R==
"number")if(ga=Math.max(0,ga-(va()-Ea))){clearTimeout(R);R="pause";b.skin.onPause&&b.skin.onPause()}};b.change=function(a){if(!(a in b.gallery))if(b.options.continuous){a=a<0?b.gallery.length+a:0;if(!(a in b.gallery))return}else return;b.current=a;if(typeof R=="number"){clearTimeout(R);R=null;ga=Ea=0}b.options.onChange(b.getCurrent());Ra(true)};b.next=function(){b.change(b.current+1)};b.previous=function(){b.change(b.current-1)};b.setDimensions=function(a,d,f,k,n,t,s){var O=a,x=d,u=2*s+n;if(a+u>f)a=
f-u;var X=2*s+t;if(d+X>k)d=k-X;var V=(O-a)/O,I=(x-d)/x,da=V>0||I>0;if(da)if(V>I)d=Math.round(x/O*a);else if(I>V)a=Math.round(O/x*d);b.dimensions={height:a+n,width:d+t,innerHeight:a,innerWidth:d,top:Math.floor((f-(a+u))/2+s),left:Math.floor((k-(d+X))/2+s),oversized:da};return b.dimensions};b.makeGallery=function(a){var d=[],f=-1;if(typeof a=="string")a=[a];if(typeof a.length=="number"){T(a,function(t,s){d[t]=s.content?s:{content:s}});f=0}else{if(a.tagName){var k=b.getCache(a);a=k?k:b.makeObject(a)}if(a.gallery){d=
[];for(var n in b.cache){k=b.cache[n];if(k.gallery&&k.gallery==a.gallery){if(f==-1&&k.content==a.content)f=d.length;d.push(k)}}if(f==-1){d.unshift(a);f=0}}else{d=[a];f=0}}T(d,function(t,s){d[t]=Y({},s)});return[d,f]};b.makeObject=function(a,d){var f={content:a.href,title:a.getAttribute("title")||"",link:a};if(d){d=Y({},d);T(["player","title","height","width","gallery"],function(n,t){if(typeof d[t]!="undefined"){f[t]=d[t];delete d[t]}});f.options=d}else f.options={};if(!f.player)f.player=b.getPlayer(f.content);
if(a=a.getAttribute("rel")){var k=a.match(tb);if(k)f.gallery=escape(k[2]);T(a.split(";"),function(n,t){if(k=t.match(ub))f[k[1]]=k[2]})}return f};b.getPlayer=function(a){if(a.indexOf("#")>-1&&a.indexOf(document.location.href)==0)return"inline";var d=a.indexOf("?");if(d>-1)a=a.substring(0,d);var f;if(a=a.match(vb))f=a[0];if(f){if(b.img&&b.img.ext.indexOf(f)>-1)return"img";if(b.swf&&b.swf.ext.indexOf(f)>-1)return"swf";if(b.flv&&b.flv.ext.indexOf(f)>-1)return"flv";if(b.qt&&b.qt.ext.indexOf(f)>-1)return b.wmp&&
b.wmp.ext.indexOf(f)>-1?"qtwmp":"qt";if(b.wmp&&b.wmp.ext.indexOf(f)>-1)return"wmp"}return"iframe"};if(!Array.prototype.indexOf)Array.prototype.indexOf=function(a,d){var f=this.length>>>0;d=d||0;if(d<0)d+=f;for(;d<f;++d)if(d in this&&this[d]===a)return d;return-1};var Ca=true,Da=true;b.getStyle=function(){var a=/opacity=([^)]*)/,d=document.defaultView&&document.defaultView.getComputedStyle;return function(f,k){var n;if(!Ca&&k=="opacity"&&f.currentStyle){n=a.test(f.currentStyle.filter||"")?parseFloat(RegExp.$1)/
100+"":"";return n===""?"1":n}if(d){if(f=d(f,null))n=f[k];if(k=="opacity"&&n=="")n="1"}else n=f.currentStyle[k];return n}}();b.appendHTML=function(a,d){if(a.insertAdjacentHTML)a.insertAdjacentHTML("BeforeEnd",d);else if(a.lastChild){var f=a.ownerDocument.createRange();f.setStartAfter(a.lastChild);d=f.createContextualFragment(d);a.appendChild(d)}else a.innerHTML=d};b.getWindowSize=function(a){if(document.compatMode==="CSS1Compat")return document.documentElement["client"+a];return document.body["client"+
a]};b.setOpacity=function(a,d){a=a.style;if(Ca)a.opacity=d==1?"":d;else{a.zoom=1;if(d==1){if(typeof a.filter=="string"&&/alpha/i.test(a.filter))a.filter=a.filter.replace(/\s*[\w\.]*alpha\([^\)]*\);?/gi,"")}else a.filter=(a.filter||"").replace(/\s*[\w\.]*alpha\([^\)]*\)/gi,"")+" alpha(opacity="+d*100+")"}};b.clearOpacity=function(a){b.setOpacity(a,1)};var wa=Event,Ka=false,qa;if(document.addEventListener)qa=function(){document.removeEventListener("DOMContentLoaded",qa,false);b.load()};else if(document.attachEvent)qa=
function(){if(document.readyState==="complete"){document.detachEvent("onreadystatechange",qa);b.load()}};b.load=function(){if(!Ka){if(!document.body)return setTimeout(b.load,13);Ka=true;lb();b.options.skipSetup||b.setup();b.skin.init()}};b.plugins={};if(navigator.plugins&&navigator.plugins.length){var oa=[];T(navigator.plugins,function(a,d){oa.push(d.name)});oa=oa.join(",");F=oa.indexOf("Flip4Mac")>-1;b.plugins={fla:oa.indexOf("Shockwave Flash")>-1,qt:oa.indexOf("QuickTime")>-1,wmp:!F&&oa.indexOf("Windows Media")>
-1,f4m:F}}else{F=function(a){var d;try{d=new ActiveXObject(a)}catch(f){}return!!d};b.plugins={fla:F("ShockwaveFlash.ShockwaveFlash"),qt:F("QuickTime.QuickTime"),wmp:F("wmplayer.ocx"),f4m:false}}var xb=/^(light|shadow)box/i,yb=1;b.cache={};b.select=function(a){var d=[];if(a){var f=a.length;if(f)if(typeof a=="string"){if(b.find)d=b.find(a)}else if(f==2&&typeof a[0]=="string"&&a[1].nodeType){if(b.find)d=b.find(a[0],a[1])}else for(var k=0;k<f;++k)d[k]=a[k];else d.push(a)}else{var n;T(document.getElementsByTagName("a"),
function(t,s){(n=s.getAttribute("rel"))&&xb.test(n)&&d.push(s)})}return d};b.setup=function(a,d){T(b.select(a),function(f,k){b.addCache(k,d)})};b.teardown=function(a){T(b.select(a),function(d,f){b.removeCache(f)})};b.addCache=function(a,d){var f=a.shadowboxCacheKey;if(f==Aa){f=yb++;a.shadowboxCacheKey=f;ha(a,"click",Va)}b.cache[f]=b.makeObject(a,d)};b.removeCache=function(a){ma(a,"click",Va);delete b.cache[a.shadowboxCacheKey];a.shadowboxCacheKey=null};b.getCache=function(a){a=a.shadowboxCacheKey;
return a in b.cache&&b.cache[a]};b.clearCache=function(){for(var a in b.cache)b.removeCache(b.cache[a].link);b.cache={}};b.find=function(){function a(c){for(var e="",h,i=0;c[i];i++){h=c[i];if(h.nodeType===3||h.nodeType===4)e+=h.nodeValue;else if(h.nodeType!==8)e+=a(h.childNodes)}return e}function d(c,e,h,i,l,m){l=0;for(var w=i.length;l<w;l++){var p=i[l];if(p){p=p[c];for(var q=false;p;){if(p.sizcache===h){q=i[p.sizset];break}if(p.nodeType===1&&!m){p.sizcache=h;p.sizset=l}if(p.nodeName.toLowerCase()===
e){q=p;break}p=p[c]}i[l]=q}}}function f(c,e,h,i,l,m){l=0;for(var w=i.length;l<w;l++){var p=i[l];if(p){p=p[c];for(var q=false;p;){if(p.sizcache===h){q=i[p.sizset];break}if(p.nodeType===1){if(!m){p.sizcache=h;p.sizset=l}if(typeof e!=="string"){if(p===e){q=true;break}}else if(x.filter(e,[p]).length>0){q=p;break}}p=p[c]}i[l]=q}}}var k=/((?:\((?:\([^()]+\)|[^()]+)+\)|\[(?:\[[^[\]]*\]|['"][^'"]*['"]|[^[\]'"]+)+\]|\\.|[^ >+~,(\[\\]+)+|[>+~])(\s*,\s*)?((?:.|\r|\n)*)/g,n=0,t=Object.prototype.toString,s=false,
O=true;[0,0].sort(function(){O=false;return 0});var x=function(c,e,h,i){h=h||[];var l=e=e||document;if(e.nodeType!==1&&e.nodeType!==9)return[];if(!c||typeof c!=="string")return h;for(var m=[],w,p,q,L,P=true,J=ka(e),Q=c;(k.exec(""),w=k.exec(Q))!==null;){Q=w[3];m.push(w[1]);if(w[2]){L=w[3];break}}if(m.length>1&&X.exec(c))if(m.length===2&&u.relative[m[0]])p=la(m[0]+m[1],e);else for(p=u.relative[m[0]]?[e]:x(m.shift(),e);m.length;){c=m.shift();if(u.relative[c])c+=m.shift();p=la(c,p)}else{if(!i&&m.length>
1&&e.nodeType===9&&!J&&u.match.ID.test(m[0])&&!u.match.ID.test(m[m.length-1])){w=x.find(m.shift(),e,J);e=w.expr?x.filter(w.expr,w.set)[0]:w.set[0]}if(e){w=i?{expr:m.pop(),set:I(i)}:x.find(m.pop(),m.length===1&&(m[0]==="~"||m[0]==="+")&&e.parentNode?e.parentNode:e,J);p=w.expr?x.filter(w.expr,w.set):w.set;if(m.length>0)q=I(p);else P=false;for(;m.length;){var G=m.pop();w=G;if(u.relative[G])w=m.pop();else G="";if(w==null)w=e;u.relative[G](q,w,J)}}else q=[]}q||(q=p);if(!q)throw"Syntax error, unrecognized expression: "+
(G||c);if(t.call(q)==="[object Array]")if(P)if(e&&e.nodeType===1)for(c=0;q[c]!=null;c++){if(q[c]&&(q[c]===true||q[c].nodeType===1&&N(e,q[c])))h.push(p[c])}else for(c=0;q[c]!=null;c++)q[c]&&q[c].nodeType===1&&h.push(p[c]);else h.push.apply(h,q);else I(q,h);if(L){x(L,l,h,i);x.uniqueSort(h)}return h};x.uniqueSort=function(c){if(C){s=O;c.sort(C);if(s)for(var e=1;e<c.length;e++)c[e]===c[e-1]&&c.splice(e--,1)}return c};x.matches=function(c,e){return x(c,null,null,e)};x.find=function(c,e,h){var i,l;if(!c)return[];
for(var m=0,w=u.order.length;m<w;m++){var p=u.order[m];if(l=u.leftMatch[p].exec(c)){var q=l[1];l.splice(1,1);if(q.substr(q.length-1)!=="\\"){l[1]=(l[1]||"").replace(/\\/g,"");i=u.find[p](l,e,h);if(i!=null){c=c.replace(u.match[p],"");break}}}}i||(i=e.getElementsByTagName("*"));return{set:i,expr:c}};x.filter=function(c,e,h,i){for(var l=c,m=[],w=e,p,q,L=e&&e[0]&&ka(e[0]);c&&e.length;){for(var P in u.filter)if((p=u.match[P].exec(c))!=null){var J=u.filter[P],Q,G;q=false;if(w===m)m=[];if(u.preFilter[P])if(p=
u.preFilter[P](p,w,h,m,i,L)){if(p===true)continue}else q=Q=true;if(p)for(var $=0;(G=w[$])!=null;$++)if(G){Q=J(G,p,$,w);var pa=i^!!Q;if(h&&Q!=null)if(pa)q=true;else w[$]=false;else if(pa){m.push(G);q=true}}if(Q!==Aa){h||(w=m);c=c.replace(u.match[P],"");if(!q)return[];break}}if(c===l)if(q==null)throw"Syntax error, unrecognized expression: "+c;else break;l=c}return w};var u=x.selectors={order:["ID","NAME","TAG"],match:{ID:/#((?:[\w\u00c0-\uFFFF-]|\\.)+)/,CLASS:/\.((?:[\w\u00c0-\uFFFF-]|\\.)+)/,NAME:/\[name=['"]*((?:[\w\u00c0-\uFFFF-]|\\.)+)['"]*\]/,
ATTR:/\[\s*((?:[\w\u00c0-\uFFFF-]|\\.)+)\s*(?:(\S?=)\s*(['"]*)(.*?)\3|)\s*\]/,TAG:/^((?:[\w\u00c0-\uFFFF\*-]|\\.)+)/,CHILD:/:(only|nth|last|first)-child(?:\((even|odd|[\dn+-]*)\))?/,POS:/:(nth|eq|gt|lt|first|last|even|odd)(?:\((\d*)\))?(?=[^-]|$)/,PSEUDO:/:((?:[\w\u00c0-\uFFFF-]|\\.)+)(?:\((['"]*)((?:\([^\)]+\)|[^\2\(\)]*)+)\2\))?/},leftMatch:{},attrMap:{"class":"className","for":"htmlFor"},attrHandle:{href:function(c){return c.getAttribute("href")}},relative:{"+":function(c,e){var h=typeof e==="string",
i=h&&!/\W/.test(e);h=h&&!i;if(i)e=e.toLowerCase();i=0;for(var l=c.length,m;i<l;i++)if(m=c[i]){for(;(m=m.previousSibling)&&m.nodeType!==1;);c[i]=h||m&&m.nodeName.toLowerCase()===e?m||false:m===e}h&&x.filter(e,c,true)},">":function(c,e){var h=typeof e==="string";if(h&&!/\W/.test(e)){e=e.toLowerCase();for(var i=0,l=c.length;i<l;i++){var m=c[i];if(m){h=m.parentNode;c[i]=h.nodeName.toLowerCase()===e?h:false}}}else{i=0;for(l=c.length;i<l;i++)if(m=c[i])c[i]=h?m.parentNode:m.parentNode===e;h&&x.filter(e,
c,true)}},"":function(c,e,h){var i=n++,l=f;if(typeof e==="string"&&!/\W/.test(e)){var m=e=e.toLowerCase();l=d}l("parentNode",e,i,c,m,h)},"~":function(c,e,h){var i=n++,l=f;if(typeof e==="string"&&!/\W/.test(e)){var m=e=e.toLowerCase();l=d}l("previousSibling",e,i,c,m,h)}},find:{ID:function(c,e,h){if(typeof e.getElementById!=="undefined"&&!h)return(c=e.getElementById(c[1]))?[c]:[]},NAME:function(c,e){if(typeof e.getElementsByName!=="undefined"){var h=[];e=e.getElementsByName(c[1]);for(var i=0,l=e.length;i<
l;i++)e[i].getAttribute("name")===c[1]&&h.push(e[i]);return h.length===0?null:h}},TAG:function(c,e){return e.getElementsByTagName(c[1])}},preFilter:{CLASS:function(c,e,h,i,l,m){c=" "+c[1].replace(/\\/g,"")+" ";if(m)return c;m=0;for(var w;(w=e[m])!=null;m++)if(w)if(l^(w.className&&(" "+w.className+" ").replace(/[\t\n]/g," ").indexOf(c)>=0))h||i.push(w);else if(h)e[m]=false;return false},ID:function(c){return c[1].replace(/\\/g,"")},TAG:function(c){return c[1].toLowerCase()},CHILD:function(c){if(c[1]===
"nth"){var e=/(-?)(\d*)n((?:\+|-)?\d*)/.exec(c[2]==="even"&&"2n"||c[2]==="odd"&&"2n+1"||!/\D/.test(c[2])&&"0n+"+c[2]||c[2]);c[2]=e[1]+(e[2]||1)-0;c[3]=e[3]-0}c[0]=n++;return c},ATTR:function(c,e,h,i,l,m){e=c[1].replace(/\\/g,"");if(!m&&u.attrMap[e])c[1]=u.attrMap[e];if(c[2]==="~=")c[4]=" "+c[4]+" ";return c},PSEUDO:function(c,e,h,i,l){if(c[1]==="not")if((k.exec(c[3])||"").length>1||/^\w/.test(c[3]))c[3]=x(c[3],null,null,e);else{c=x.filter(c[3],e,h,true^l);h||i.push.apply(i,c);return false}else if(u.match.POS.test(c[0])||
u.match.CHILD.test(c[0]))return true;return c},POS:function(c){c.unshift(true);return c}},filters:{enabled:function(c){return c.disabled===false&&c.type!=="hidden"},disabled:function(c){return c.disabled===true},checked:function(c){return c.checked===true},selected:function(c){return c.selected===true},parent:function(c){return!!c.firstChild},empty:function(c){return!c.firstChild},has:function(c,e,h){return!!x(h[3],c).length},header:function(c){return/h\d/i.test(c.nodeName)},text:function(c){return"text"===
c.type},radio:function(c){return"radio"===c.type},checkbox:function(c){return"checkbox"===c.type},file:function(c){return"file"===c.type},password:function(c){return"password"===c.type},submit:function(c){return"submit"===c.type},image:function(c){return"image"===c.type},reset:function(c){return"reset"===c.type},button:function(c){return"button"===c.type||c.nodeName.toLowerCase()==="button"},input:function(c){return/input|select|textarea|button/i.test(c.nodeName)}},setFilters:{first:function(c,e){return e===
0},last:function(c,e,h,i){return e===i.length-1},even:function(c,e){return e%2===0},odd:function(c,e){return e%2===1},lt:function(c,e,h){return e<h[3]-0},gt:function(c,e,h){return e>h[3]-0},nth:function(c,e,h){return h[3]-0===e},eq:function(c,e,h){return h[3]-0===e}},filter:{PSEUDO:function(c,e,h,i){var l=e[1],m=u.filters[l];if(m)return m(c,h,e,i);else if(l==="contains")return(c.textContent||c.innerText||a([c])||"").indexOf(e[3])>=0;else if(l==="not"){e=e[3];h=0;for(i=e.length;h<i;h++)if(e[h]===c)return false;
return true}else throw"Syntax error, unrecognized expression: "+l;},CHILD:function(c,e){var h=e[1],i=c;switch(h){case "only":case "first":for(;i=i.previousSibling;)if(i.nodeType===1)return false;if(h==="first")return true;i=c;case "last":for(;i=i.nextSibling;)if(i.nodeType===1)return false;return true;case "nth":h=e[2];var l=e[3];if(h===1&&l===0)return true;e=e[0];var m=c.parentNode;if(m&&(m.sizcache!==e||!c.nodeIndex)){var w=0;for(i=m.firstChild;i;i=i.nextSibling)if(i.nodeType===1)i.nodeIndex=++w;
m.sizcache=e}c=c.nodeIndex-l;return h===0?c===0:c%h===0&&c/h>=0}},ID:function(c,e){return c.nodeType===1&&c.getAttribute("id")===e},TAG:function(c,e){return e==="*"&&c.nodeType===1||c.nodeName.toLowerCase()===e},CLASS:function(c,e){return(" "+(c.className||c.getAttribute("class"))+" ").indexOf(e)>-1},ATTR:function(c,e){var h=e[1];c=u.attrHandle[h]?u.attrHandle[h](c):c[h]!=null?c[h]:c.getAttribute(h);h=c+"";var i=e[2];e=e[4];return c==null?i==="!=":i==="="?h===e:i==="*="?h.indexOf(e)>=0:i==="~="?(" "+
h+" ").indexOf(e)>=0:!e?h&&c!==false:i==="!="?h!==e:i==="^="?h.indexOf(e)===0:i==="$="?h.substr(h.length-e.length)===e:i==="|="?h===e||h.substr(0,e.length+1)===e+"-":false},POS:function(c,e,h,i){var l=u.setFilters[e[2]];if(l)return l(c,h,e,i)}}},X=u.match.POS;for(var V in u.match){u.match[V]=new RegExp(u.match[V].source+/(?![^\[]*\])(?![^\(]*\))/.source);u.leftMatch[V]=new RegExp(/(^(?:.|\r|\n)*?)/.source+u.match[V].source)}var I=function(c,e){c=Array.prototype.slice.call(c,0);if(e){e.push.apply(e,
c);return e}return c};try{Array.prototype.slice.call(document.documentElement.childNodes,0)}catch(da){I=function(c,e){e=e||[];if(t.call(c)==="[object Array]")Array.prototype.push.apply(e,c);else if(typeof c.length==="number")for(var h=0,i=c.length;h<i;h++)e.push(c[h]);else for(h=0;c[h];h++)e.push(c[h]);return e}}var C;if(document.documentElement.compareDocumentPosition)C=function(c,e){if(!c.compareDocumentPosition||!e.compareDocumentPosition){if(c==e)s=true;return c.compareDocumentPosition?-1:1}c=
c.compareDocumentPosition(e)&4?-1:c===e?0:1;if(c===0)s=true;return c};else if("sourceIndex"in document.documentElement)C=function(c,e){if(!c.sourceIndex||!e.sourceIndex){if(c==e)s=true;return c.sourceIndex?-1:1}c=c.sourceIndex-e.sourceIndex;if(c===0)s=true;return c};else if(document.createRange)C=function(c,e){if(!c.ownerDocument||!e.ownerDocument){if(c==e)s=true;return c.ownerDocument?-1:1}var h=c.ownerDocument.createRange(),i=e.ownerDocument.createRange();h.setStart(c,0);h.setEnd(c,0);i.setStart(e,
0);i.setEnd(e,0);c=h.compareBoundaryPoints(Range.START_TO_END,i);if(c===0)s=true;return c};(function(){var c=document.createElement("div"),e="script"+(new Date).getTime();c.innerHTML="<a name='"+e+"'/>";var h=document.documentElement;h.insertBefore(c,h.firstChild);if(document.getElementById(e)){u.find.ID=function(i,l,m){if(typeof l.getElementById!=="undefined"&&!m)return(l=l.getElementById(i[1]))?l.id===i[1]||typeof l.getAttributeNode!=="undefined"&&l.getAttributeNode("id").nodeValue===i[1]?[l]:Aa:
[]};u.filter.ID=function(i,l){var m=typeof i.getAttributeNode!=="undefined"&&i.getAttributeNode("id");return i.nodeType===1&&m&&m.nodeValue===l}}h.removeChild(c);h=c=null})();(function(){var c=document.createElement("div");c.appendChild(document.createComment(""));if(c.getElementsByTagName("*").length>0)u.find.TAG=function(e,h){h=h.getElementsByTagName(e[1]);if(e[1]==="*"){e=[];for(var i=0;h[i];i++)h[i].nodeType===1&&e.push(h[i]);h=e}return h};c.innerHTML="<a href='#'></a>";if(c.firstChild&&typeof c.firstChild.getAttribute!==
"undefined"&&c.firstChild.getAttribute("href")!=="#")u.attrHandle.href=function(e){return e.getAttribute("href",2)};c=null})();document.querySelectorAll&&function(){var c=x,e=document.createElement("div");e.innerHTML="<p class='TEST'></p>";if(!(e.querySelectorAll&&e.querySelectorAll(".TEST").length===0)){x=function(i,l,m,w){l=l||document;if(!w&&l.nodeType===9&&!ka(l))try{return I(l.querySelectorAll(i),m)}catch(p){}return c(i,l,m,w)};for(var h in c)x[h]=c[h];e=null}}();(function(){var c=document.createElement("div");
c.innerHTML="<div class='test e'></div><div class='test'></div>";if(!(!c.getElementsByClassName||c.getElementsByClassName("e").length===0)){c.lastChild.className="e";if(c.getElementsByClassName("e").length!==1){u.order.splice(1,0,"CLASS");u.find.CLASS=function(e,h,i){if(typeof h.getElementsByClassName!=="undefined"&&!i)return h.getElementsByClassName(e[1])};c=null}}})();var N=document.compareDocumentPosition?function(c,e){return c.compareDocumentPosition(e)&16}:function(c,e){return c!==e&&(c.contains?
c.contains(e):true)},ka=function(c){return(c=(c?c.ownerDocument||c:0).documentElement)?c.nodeName!=="HTML":false},la=function(c,e){var h=[],i="",l;for(e=e.nodeType?[e]:e;l=u.match.PSEUDO.exec(c);){i+=l[0];c=c.replace(u.match.PSEUDO,"")}c=u.relative[c]?c+"*":c;l=0;for(var m=e.length;l<m;l++)x(c,e[l],h);return x.filter(i,h)};return x}();b.flash=function(){var a=function(){function d(){if($.readyState=="complete"){$.parentNode.removeChild($);f()}}function f(){if(!Fa){if(v.ie&&v.win){var g=N("span");
try{var j=q.getElementsByTagName("body")[0].appendChild(g);j.parentNode.removeChild(j)}catch(o){return}}Fa=true;if(pa){clearInterval(pa);pa=null}g=P.length;for(j=0;j<g;j++)P[j]()}}function k(g){if(Fa)g();else P[P.length]=g}function n(g){if(typeof p.addEventListener!=i)p.addEventListener("load",g,false);else if(typeof q.addEventListener!=i)q.addEventListener("load",g,false);else if(typeof p.attachEvent!=i)ka(p,"onload",g);else if(typeof p.onload=="function"){var j=p.onload;p.onload=function(){j();
g()}}else p.onload=g}function t(){for(var g=J.length,j=0;j<g;j++){var o=J[j].id;if(v.pv[0]>0){var r=C(o);if(r){J[j].width=r.getAttribute("width")?r.getAttribute("width"):"0";J[j].height=r.getAttribute("height")?r.getAttribute("height"):"0";if(la(J[j].swfVersion)){v.webkit&&v.webkit<312&&s(r);e(o,true)}else J[j].expressInstall&&!ra&&la("6.0.65")&&(v.win||v.mac)?O(J[j]):x(r)}}else e(o,true)}}function s(g){var j=g.getElementsByTagName(l)[0];if(j){var o=N("embed"),r=j.attributes;if(r)for(var y=r.length,
B=0;B<y;B++)r[B].nodeName=="DATA"?o.setAttribute("src",r[B].nodeValue):o.setAttribute(r[B].nodeName,r[B].nodeValue);if(j=j.childNodes){r=j.length;for(y=0;y<r;y++)j[y].nodeType==1&&j[y].nodeName=="PARAM"&&o.setAttribute(j[y].getAttribute("name"),j[y].getAttribute("value"))}g.parentNode.replaceChild(o,g)}}function O(g){ra=true;var j=C(g.id);if(j){if(g.altContentId){var o=C(g.altContentId);if(o){sa=o;Ga=g.altContentId}}else sa=u(j);if(!/%$/.test(g.width)&&parseInt(g.width,10)<310)g.width="310";if(!/%$/.test(g.height)&&
parseInt(g.height,10)<137)g.height="137";q.title=q.title.slice(0,47)+" - Flash Player Installation";o="MMredirectURL="+p.location+"&MMplayerType="+(v.ie&&v.win?"ActiveX":"PlugIn")+"&MMdoctitle="+q.title;var r=g.id;if(v.ie&&v.win&&j.readyState!=4){var y=N("div");r+="SWFObjectNew";y.setAttribute("id",r);j.parentNode.insertBefore(y,j);j.style.display="none";ka(p,"onload",function(){j.parentNode.removeChild(j)})}X({data:g.expressInstall,id:w,width:g.width,height:g.height},{flashvars:o},r)}}function x(g){if(v.ie&&
v.win&&g.readyState!=4){var j=N("div");g.parentNode.insertBefore(j,g);j.parentNode.replaceChild(u(g),j);g.style.display="none";ka(p,"onload",function(){g.parentNode.removeChild(g)})}else g.parentNode.replaceChild(u(g),g)}function u(g){var j=N("div");if(v.win&&v.ie)j.innerHTML=g.innerHTML;else if(g=g.getElementsByTagName(l)[0])if(g=g.childNodes)for(var o=g.length,r=0;r<o;r++)!(g[r].nodeType==1&&g[r].nodeName=="PARAM")&&g[r].nodeType!=8&&j.appendChild(g[r].cloneNode(true));return j}function X(g,j,o){var r,
y=C(o);if(y){if(typeof g.id==i)g.id=o;if(v.ie&&v.win){var B="";for(var D in g)if(g[D]!=Object.prototype[D])if(D.toLowerCase()=="data")j.movie=g[D];else if(D.toLowerCase()=="styleclass")B+=' class="'+g[D]+'"';else if(D.toLowerCase()!="classid")B+=" "+D+'="'+g[D]+'"';D="";for(var A in j)if(j[A]!=Object.prototype[A])D+='<param name="'+A+'" value="'+j[A]+'" />';y.outerHTML='<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000"'+B+">"+D+"</object>";Q[Q.length]=g.id;r=C(g.id)}else if(v.webkit&&v.webkit<
312){A=N("embed");A.setAttribute("type",m);for(B in g)if(g[B]!=Object.prototype[B])if(B.toLowerCase()=="data")A.setAttribute("src",g[B]);else if(B.toLowerCase()=="styleclass")A.setAttribute("class",g[B]);else B.toLowerCase()!="classid"&&A.setAttribute(B,g[B]);for(var W in j)j[W]!=Object.prototype[W]&&W.toLowerCase()!="movie"&&A.setAttribute(W,j[W]);y.parentNode.replaceChild(A,y);r=A}else{A=N(l);A.setAttribute("type",m);for(var E in g)if(g[E]!=Object.prototype[E])if(E.toLowerCase()=="styleclass")A.setAttribute("class",
g[E]);else E.toLowerCase()!="classid"&&A.setAttribute(E,g[E]);for(var aa in j)j[aa]!=Object.prototype[aa]&&aa.toLowerCase()!="movie"&&V(A,aa,j[aa]);y.parentNode.replaceChild(A,y);r=A}}return r}function V(g,j,o){var r=N("param");r.setAttribute("name",j);r.setAttribute("value",o);g.appendChild(r)}function I(g){var j=C(g);if(j&&(j.nodeName=="OBJECT"||j.nodeName=="EMBED"))if(v.ie&&v.win)j.readyState==4?da(g):p.attachEvent("onload",function(){da(g)});else j.parentNode.removeChild(j)}function da(g){if(g=
C(g)){for(var j in g)if(typeof g[j]=="function")g[j]=null;g.parentNode.removeChild(g)}}function C(g){var j=null;try{j=q.getElementById(g)}catch(o){}return j}function N(g){return q.createElement(g)}function ka(g,j,o){g.attachEvent(j,o);G[G.length]=[g,j,o]}function la(g){var j=v.pv;g=g.split(".");g[0]=parseInt(g[0],10);g[1]=parseInt(g[1],10)||0;g[2]=parseInt(g[2],10)||0;return j[0]>g[0]||j[0]==g[0]&&j[1]>g[1]||j[0]==g[0]&&j[1]==g[1]&&j[2]>=g[2]?true:false}function c(g,j){if(!(v.ie&&v.mac)){var o=q.getElementsByTagName("head")[0],
r=N("style");r.setAttribute("type","text/css");r.setAttribute("media","screen");!(v.ie&&v.win)&&typeof q.createTextNode!=i&&r.appendChild(q.createTextNode(g+" {"+j+"}"));o.appendChild(r);if(v.ie&&v.win&&typeof q.styleSheets!=i&&q.styleSheets.length>0){o=q.styleSheets[q.styleSheets.length-1];typeof o.addRule==l&&o.addRule(g,j)}}}function e(g,j){j=j?"visible":"hidden";if(Fa&&C(g))C(g).style.visibility=j;else c("#"+g,"visibility:"+j)}function h(g){return/[\\\"<>\.;]/.exec(g)!=null?encodeURIComponent(g):
g}var i="undefined",l="object",m="application/x-shockwave-flash",w="SWFObjectExprInst",p=K,q=document,L=navigator,P=[],J=[],Q=[],G=[],$,pa=null,sa=null,Ga=null,Fa=false,ra=false,v=function(){var g=typeof q.getElementById!=i&&typeof q.getElementsByTagName!=i&&typeof q.createElement!=i,j=[0,0,0],o=null;if(typeof L.plugins!=i&&typeof L.plugins["Shockwave Flash"]==l){if((o=L.plugins["Shockwave Flash"].description)&&!(typeof L.mimeTypes!=i&&L.mimeTypes[m]&&!L.mimeTypes[m].enabledPlugin)){o=o.replace(/^.*\s+(\S+\s+\S+$)/,
"$1");j[0]=parseInt(o.replace(/^(.*)\..*$/,"$1"),10);j[1]=parseInt(o.replace(/^.*\.(.*)\s.*$/,"$1"),10);j[2]=/r/.test(o)?parseInt(o.replace(/^.*r(.*)$/,"$1"),10):0}}else if(typeof p.ActiveXObject!=i){var r=null,y=false;try{r=new ActiveXObject("ShockwaveFlash.ShockwaveFlash.7")}catch(B){try{r=new ActiveXObject("ShockwaveFlash.ShockwaveFlash.6");j=[6,0,21];r.AllowScriptAccess="always"}catch(D){if(j[0]==6)y=true}if(!y)try{r=new ActiveXObject("ShockwaveFlash.ShockwaveFlash")}catch(A){}}if(!y&&r)try{if(o=
r.GetVariable("$version")){o=o.split(" ")[1].split(",");j=[parseInt(o[0],10),parseInt(o[1],10),parseInt(o[2],10)]}}catch(W){}}y=L.userAgent.toLowerCase();var E=L.platform.toLowerCase();o=/webkit/.test(y)?parseFloat(y.replace(/^.*webkit\/(\d+(\.\d+)?).*$/,"$1")):false;r=E?/win/.test(E):/win/.test(y);y=E?/mac/.test(E):/mac/.test(y);return{w3cdom:g,pv:j,webkit:o,ie:false,win:r,mac:y}}();(function(){if(v.w3cdom){k(t);if(v.ie&&v.win)try{q.write("<script id=__ie_ondomload defer=true src=//:><\/script>");
($=C("__ie_ondomload"))&&ka($,"onreadystatechange",d)}catch(g){}if(v.webkit&&typeof q.readyState!=i)pa=setInterval(function(){/loaded|complete/.test(q.readyState)&&f()},10);typeof q.addEventListener!=i&&q.addEventListener("DOMContentLoaded",f,null);n(f)}})();(function(){v.ie&&v.win&&K.attachEvent("onunload",function(){for(var g=G.length,j=0;j<g;j++)G[j][0].detachEvent(G[j][1],G[j][2]);g=Q.length;for(j=0;j<g;j++)I(Q[j]);for(var o in v)v[o]=null;v=null;for(var r in a)a[r]=null;a=null})})();return{registerObject:function(g,
j,o){if(!(!v.w3cdom||!g||!j)){var r={};r.id=g;r.swfVersion=j;r.expressInstall=o?o:false;J[J.length]=r;e(g,false)}},getObjectById:function(g){var j=null;if(v.w3cdom)if(g=C(g)){var o=g.getElementsByTagName(l)[0];if(!o||o&&typeof g.SetVariable!=i)j=g;else if(typeof o.SetVariable!=i)j=o}return j},embedSWF:function(g,j,o,r,y,B,D,A,W){if(!(!v.w3cdom||!g||!j||!o||!r||!y)){o+="";r+="";if(la(y)){e(j,false);var E={};if(W&&typeof W===l)for(var aa in W)if(W[aa]!=Object.prototype[aa])E[aa]=W[aa];E.data=g;E.width=
o;E.height=r;var za={};if(A&&typeof A===l)for(var Ha in A)if(A[Ha]!=Object.prototype[Ha])za[Ha]=A[Ha];if(D&&typeof D===l)for(var ta in D)if(D[ta]!=Object.prototype[ta])if(typeof za.flashvars!=i)za.flashvars+="&"+ta+"="+D[ta];else za.flashvars=ta+"="+D[ta];k(function(){X(E,za,j);E.id==j&&e(j,true)})}else if(B&&!ra&&la("6.0.65")&&(v.win||v.mac)){ra=true;e(j,false);k(function(){var ua={};ua.id=ua.altContentId=j;ua.width=o;ua.height=r;ua.expressInstall=B;O(ua)})}}},getFlashPlayerVersion:function(){return{major:v.pv[0],
minor:v.pv[1],release:v.pv[2]}},hasFlashPlayerVersion:la,createSWF:function(g,j,o){return v.w3cdom?X(g,j,o):Aa},removeSWF:function(g){v.w3cdom&&I(g)},createCSS:function(g,j){v.w3cdom&&c(g,j)},addDomLoadEvent:k,addLoadEvent:n,getQueryParamValue:function(g){var j=q.location.search||q.location.hash;if(g==null)return h(j);if(j){j=j.substring(1).split("&");for(var o=0;o<j.length;o++)if(j[o].substring(0,j[o].indexOf("="))==g)return h(j[o].substring(j[o].indexOf("=")+1))}return""},expressInstallCallback:function(){if(ra&&
sa){var g=C(w);if(g){g.parentNode.replaceChild(sa,g);if(Ga){e(Ga,true);if(v.ie&&v.win)sa.style.display="block"}Ga=sa=null;ra=false}}}}}();return a}();b.lang={code:"de",of:"von",loading:"ladend",cancel:"Abbrechen",next:"N\u00e4chste",previous:"Vorige",play:"Abspielen",pause:"Pause",close:"Schlie\u00dfen",errors:{single:'Um den Inhalt anzeigen zu k\u00f6nnen muss die Browser-Erweiterung <a href="{0}">{1}</a> installiert werden.',shared:'Um den Inhalt anzeigen zu k\u00f6nnen m\u00fcssen die beiden Browser-Erweiterungen <a href="{0}">{1}</a> und <a href="{2}">{3}</a> installiert werden.',
either:'Um den Inhalt anzeigen zu k\u00f6nnen muss eine der beiden Browser-Erweiterungen <a href="{0}">{1}</a> oder <a href="{2}">{3}</a> installiert werden.'}};var ba,Xa="sb-drag-proxy",M,ca,ia;b.img=function(a,d){this.obj=a;this.id=d;this.ready=false;var f=this;ba=new Image;ba.onload=function(){f.height=a.height?parseInt(a.height,10):ba.height;f.width=a.width?parseInt(a.width,10):ba.width;f.ready=true;ba=ba.onload=null};ba.src=a.content};b.img.ext=["bmp","gif","jpg","jpeg","png"];b.img.prototype=
{append:function(a,d){var f=document.createElement("img");f.id=this.id;f.src=this.obj.content;f.style.position="absolute";var k;if(d.oversized&&b.options.handleOversize=="resize"){k=d.innerHeight;d=d.innerWidth}else{k=this.height;d=this.width}f.setAttribute("height",k);f.setAttribute("width",d);a.appendChild(f)},remove:function(){var a=z(this.id);a&&na(a);pb();if(ba)ba=ba.onload=null},onLoad:function(){b.dimensions.oversized&&b.options.handleOversize=="drag"&&ob()},onWindowResize:function(){var a=
b.dimensions;switch(b.options.handleOversize){case "resize":var d=z(this.id);d.height=a.innerHeight;d.width=a.innerWidth;break;case "drag":if(ia){d=parseInt(b.getStyle(ia,"top"));var f=parseInt(b.getStyle(ia,"left"));if(d+this.height<a.innerHeight)ia.style.top=a.innerHeight-this.height+"px";if(f+this.width<a.innerWidth)ia.style.left=a.innerWidth-this.width+"px";Wa()}break}}};b.iframe=function(a,d){this.obj=a;this.id=d;d=z("sb-overlay");this.height=a.height?parseInt(a.height,10):d.offsetHeight;this.width=
a.width?parseInt(a.width,10):d.offsetWidth};b.iframe.prototype={append:function(a){var d='<iframe id="'+this.id+'" name="'+this.id+'" height="100%" width="100%" frameborder="0" marginwidth="0" marginheight="0" style="visibility:hidden" onload="this.style.visibility=\'visible\'" scrolling="auto"';if(b.isIE){d+=' allowtransparency="true"';if(b.isIE6)d+=" src=\"javascript:false;document.write('');\""}d+="></iframe>";a.innerHTML=d},remove:function(){var a=z(this.id);if(a){na(a);b.isGecko&&delete K.frames[this.id]}},
onLoad:function(){(b.isIE?z(this.id).contentWindow:K.frames[this.id]).location.href=this.obj.content}};b.html=function(a,d){this.obj=a;this.id=d;this.height=a.height?parseInt(a.height,10):300;this.width=a.width?parseInt(a.width,10):500};b.html.prototype={append:function(a){var d=document.createElement("div");d.id=this.id;d.className="html";d.innerHTML=this.obj.content;a.appendChild(d)},remove:function(){var a=z(this.id);a&&na(a)}};b.swf=function(a,d){this.obj=a;this.id=d;this.height=a.height?parseInt(a.height,
10):300;this.width=a.width?parseInt(a.width,10):300};b.swf.ext=["swf"];b.swf.prototype={append:function(a,d){var f=document.createElement("div");f.id=this.id;a.appendChild(f);b.flash.embedSWF(this.obj.content,this.id,d.innerWidth,d.innerHeight,b.options.flashVersion,b.path+"expressInstall.swf",b.options.flashVars,b.options.flashParams)},remove:function(){b.flash.expressInstallCallback();b.flash.removeSWF(this.id)},onWindowResize:function(){var a=b.dimensions,d=z(this.id);d.height=a.innerHeight;d.width=
a.innerWidth}};b.flv=function(a,d){this.obj=a;this.id=d;this.height=a.height?parseInt(a.height,10):300;if(b.options.showMovieControls)this.height+=20;this.width=a.width?parseInt(a.width,10):300};b.flv.ext=["flv","m4v"];b.flv.prototype={append:function(a,d){var f=document.createElement("div");f.id=this.id;a.appendChild(f);a=d.innerHeight;d=d.innerWidth;f=b.path+"player.swf";var k=b.options.flashVersion,n=b.path+"expressInstall.swf",t=Y({file:this.obj.content,height:a,width:d,autostart:b.options.autoplayMovies?
"true":"false",controlbar:b.options.showMovieControls?"bottom":"none",backcolor:"0x000000",frontcolor:"0xCCCCCC",lightcolor:"0x557722"},b.options.flashVars);b.flash.embedSWF(f,this.id,d,a,k,n,t,b.options.flashParams)},remove:function(){b.flash.expressInstallCallback();b.flash.removeSWF(this.id)},onWindowResize:function(){var a=b.dimensions,d=z(this.id);d.height=a.innerHeight;d.width=a.innerWidth}};b.qt=function(a,d){this.obj=a;this.id=d;this.height=a.height?parseInt(a.height,10):300;if(b.options.showMovieControls)this.height+=
16;this.width=a.width?parseInt(a.width,10):300};b.qt.ext=["dv","mov","moov","movie","mp4","avi","mpg","mpeg"];b.qt.prototype={append:function(a){var d=b.options,f=String(d.autoplayMovies),k=String(d.showMovieControls);d="<object";var n={id:this.id,name:this.id,height:this.height,width:this.width,kioskmode:"true"};if(b.isIE){n.classid="clsid:02BF25D5-8C17-4B23-BC80-D3488ABDDC6B";n.codebase="http://www.apple.com/qtactivex/qtplugin.cab#version=6,0,2,0"}else{n.type="video/quicktime";n.data=this.obj.content}for(var t in n)d+=
" "+t+'="'+n[t]+'"';d+=">";f={src:this.obj.content,scale:"aspect",controller:k,autoplay:f};for(var s in f)d+='<param name="'+s+'" value="'+f[s]+'">';d+="</object>";a.innerHTML=d},remove:function(){try{document[this.id].Stop()}catch(a){}var d=z(this.id);d&&na(d)}};var zb=b.isIE?70:45;b.wmp=function(a,d){this.obj=a;this.id=d;this.height=a.height?parseInt(a.height,10):300;if(b.options.showMovieControls)this.height+=zb;this.width=a.width?parseInt(a.width,10):300};b.wmp.ext=["asf","avi","mpg","mpeg","wm",
"wmv"];b.wmp.prototype={append:function(a){var d=b.options,f='<object id="'+this.id+'" name="'+this.id+'" height="'+this.height+'" width="'+this.width+'"',k={autostart:d.autoplayMovies?1:0};if(b.isIE){f+=' classid="clsid:6BF52A52-394A-11d3-B153-00C04F79FAA6"';k.url=this.obj.content;k.uimode=d.showMovieControls?"full":"none"}else{f+=' type="video/x-ms-wmv"';f+=' data="'+this.obj.content+'"';k.showcontrols=d.showMovieControls?1:0}f+=">";for(var n in k)f+='<param name="'+n+'" value="'+k[n]+'">';f+="</object>";
a.innerHTML=f},remove:function(){if(b.isIE)try{K[this.id].controls.stop();K[this.id].URL="movie"+va()+".wmv";K[this.id]=function(){}}catch(a){}var d=z(this.id);d&&setTimeout(function(){na(d)},10)}};var Oa=false,Ma=[],Ab=["sb-nav-close","sb-nav-next","sb-nav-play","sb-nav-pause","sb-nav-previous"],Z,fa,ja,Pa=true,H={};H.markup='<div id="sb-container"><div onclick="Shadowbox.close()" id="sb-overlay"></div><div id="sb-wrapper"><div id="sb-title"><div id="sb-title-inner"></div></div><div id="sb-wrapper-inner"><div id="sb-body"><div id="sb-body-inner"></div><div id="sb-loading"><div id="sb-loading-inner"><span>{loading}</span></div></div></div></div><div id="sb-info"><div id="sb-info-inner"><div id="sb-counter"></div><div id="sb-nav"><a id="sb-nav-close" title="{close}" onclick="Shadowbox.close()"></a><a id="sb-nav-next" title="{next}" onclick="Shadowbox.next()"></a><a id="sb-nav-play" title="{play}" onclick="Shadowbox.play()"></a><a id="sb-nav-pause" title="{pause}" onclick="Shadowbox.pause()"></a><a id="sb-nav-previous" title="{previous}" onclick="Shadowbox.previous()"></a></div></div></div></div></div>';
H.options={animSequence:"sync",counterLimit:10,counterType:"default",displayCounter:true,displayNav:true,fadeDuration:0.35,initialHeight:160,initialWidth:320,modal:false,overlayColor:"#000",overlayOpacity:0.5,resizeDuration:0.35,showOverlay:true,troubleElements:["select","object","embed","canvas"]};H.init=function(){b.appendHTML(document.body,Qa(H.markup,b.lang));H.body=z("sb-body-inner");Z=z("sb-container");fa=z("sb-overlay");ja=z("sb-wrapper");if(!Da)Z.style.position="absolute";if(!Ca){var a,d,
f=/url\("(.*\.png)"\)/;T(Ab,function(n,t){if(a=z(t))if(d=b.getStyle(a,"backgroundImage").match(f)){a.style.backgroundImage="none";a.style.filter="progid:DXImageTransform.Microsoft.AlphaImageLoader(enabled=true,src="+d[1]+",sizingMethod=scale);"}})}var k;ha(K,"resize",function(){if(k){clearTimeout(k);k=null}if(S)k=setTimeout(H.onWindowResize,10)})};H.onOpen=function(a,d){Pa=false;Z.style.display="block";ab();a=Na(b.options.initialHeight,b.options.initialWidth);xa(a.innerHeight,a.top);ya(a.width,a.left);
if(b.options.showOverlay){fa.style.backgroundColor=b.options.overlayColor;b.setOpacity(fa,0);b.options.modal||ha(fa,"click",b.close);Oa=true}if(!Da){La();ha(K,"scroll",La)}bb();Z.style.visibility="visible";Oa?U(fa,"opacity",b.options.overlayOpacity,b.options.fadeDuration,d):d()};H.onLoad=function(a,d){for(cb(true);H.body.firstChild;)na(H.body.firstChild);sb(a,function(){if(S){if(!a)ja.style.visibility="visible";qb(d)}})};H.onReady=function(a){if(S){var d=b.player,f=Na(d.height,d.width),k=function(){rb(a)};
switch(b.options.animSequence){case "hw":xa(f.innerHeight,f.top,true,function(){ya(f.width,f.left,true,k)});break;case "wh":ya(f.width,f.left,true,function(){xa(f.innerHeight,f.top,true,k)});break;default:ya(f.width,f.left,true);xa(f.innerHeight,f.top,true,k)}}};H.onShow=function(a){cb(false,a);Pa=true};H.onClose=function(){Da||ma(K,"scroll",La);ma(fa,"click",b.close);ja.style.visibility="hidden";var a=function(){Z.style.visibility="hidden";Z.style.display="none";bb(true)};Oa?U(fa,"opacity",0,b.options.fadeDuration,
a):a()};H.onPlay=function(){ea("play",false);ea("pause",true)};H.onPause=function(){ea("pause",false);ea("play",true)};H.onWindowResize=function(){if(Pa){ab();var a=b.player,d=Na(a.height,a.width);ya(d.width,d.left);xa(d.innerHeight,d.top);a.onWindowResize&&a.onWindowResize()}};b.skin=H;K.Shadowbox=b})(window);


var ShowBasketTimerID     = 0 ;
var ShowKurzBasketTimerID = 0 ;
var HideArtikelQuick      = 0 ;

var PicTimerID=0;var x=0;var y=0;var artX=0;var artY=0;function del_confirm(){if(confirm("Position wirklich löschen?")){
            hideBasketTabelle ();
            return true;}else{return false;}}
function HideVarPic(myID){$('TipContent').hide();$('TipContent').update("")
if(PicTimerID>0){window.clearInterval(PicTimerID);}}
function ShowVarPic(myID,myVarID){oldContent=$('TipContent').innerHTML;data='<img src="include/showthumbcache.php?Key=detail1&width=110&artikelid='+myID+'&varid='+myVarID+'">';$('TipContent').update(data);if(PicTimerID==0){PicTimerID=window.setInterval("Einblenden()",1000);PicTimerID=0;}}
function Einblenden(){if($('TipContent').getWidth()>50){updateContentPos;$('TipContent').style.left=(x+20)+"px";$('TipContent').style.top=(y-wmtt.getHeight()+10)+"px";Effect.Appear('TipContent',{duration:0.2,to:1,transition:Effect.Transitions.linear});if(PicTimerID>0){window.clearInterval(PicTimerID);}}}
function updateContentPos(e){wmtt=$('TipContent');if(wmtt!=null){x=(document.all)?window.event.x+wmtt.offsetParent.scrollLeft:e.pageX;y=(document.all)?window.event.y+wmtt.offsetParent.scrollTop:e.pageY;if(wmtt.getWidth()>50){wmtt.style.left=(x+20)+"px";wmtt.style.top=(y-wmtt.getHeight()+10)+"px";}}}
function bildertausch(){var elms=$('content').getElementsByClassName('item');for(var i=0;i<elms.length;i++){var elms_img=elms[i].getElementsByClassName('imgborder');for(var j=0;j<elms_img.length;j++){if(elms_img[j].getAttribute("src").indexOf("thumb")>0){elms_img[j].setAttribute("src",'include/showpic.php?Key=bildklein&artikelid='+elms_img[j].getAttribute("artikelid")+'&varid='+elms_img[j].getAttribute("artikelid"))}else{elms_img[j].setAttribute("src",'include/showthumbcache.php?Key=detail1&width=110&artikelid='+elms_img[j].getAttribute("artikelid")+'&varid='+elms_img[j].getAttribute("artikelid"))}}}}
function ChangeColor(myID,myVarID){data='<img class="imgborder" artikelid="'+myID+'" varid="'+myVarID+'" src="include/showpic.php?Key=bildklein&width=110&artikelid='+myID+'&varid='+myVarID+'">';var elms=$('content').getElementsByClassName('item');for(var i=0;i<elms.length;i++){var images=elms[i].getElementsByClassName('imgborder');for(var j=0;j<images.length;j++){if(images[j].getAttribute("artikelid")==myID){if(images[j].getAttribute("src").indexOf("detail1")>0){images[j].setAttribute("src",'include/showthumbcache.php?Key=detail1&width=110&artikelid='+myID+'&varid='+myVarID)}else{images[j].setAttribute("src",'include/showpic.php?Key=bildklein&artikelid='+myID+'&varid='+myVarID)}
images[j].observe('mouseover',function(event){ShowVarPic(this.getAttribute("artikelid"),myVarID);});}}}}
function HideKurzArtikel(){$('ArtContent').setAttribute("artikelid",0,0);$('ArtContent').hide();hideOverlay()}

function ShowBasketInfo(lnArtID,lnVarID,lcSessionnr,lnSessionID, tcTyp) {
	    if (ShowBasketTimerID>0) {
		    window.clearInterval(ShowBasketTimerID);
		    ShowBasketTimerID = 0;
	    }
            
            loadBasket(lcSessionnr);
            return;
}

function storeBasketInfo(transport){$('BasketInfo').update(transport.responseText);}
function HideBasketInfo(){$('BasketInfo').hide();hideOverlay()
WkTimerID=window.setInterval("hide_wk_inhalt()",3000);}
function showBasketHelp(){$("varselekt").style.zIndex=9;showOverlay();$("varselekt").show();alert("Bitte wählen Sie die Größe (und Farbe) in der Tabelle.");$("varselekt").style.zIndex=2;hideOverlay();}
function showOverlay(){if(!$('overlay')){var div=document.createElement('div');appdiv=document.body.appendChild(div);appdiv.innerHTML='<div id="overlay" class="overlay" onclick="hideOverlay()"></div>';}else{$('overlay').show();}}
function hideOverlay(){if($('overlay'))$('overlay').hide();if($('VideoContent'))$('VideoContent').hide();if($('wkListe'))$('wkListe').hide();if($('wkListeFrame'))$('wkListeFrame').hide();if($('ArtContent')&&!$('BasketInfo'))$('ArtContent').hide();if($('BasketInfo'))$('BasketInfo').hide();}
function rkc(tnvonid,tnid,tcTyp){mySessionID=$("wrapper").getAttribute("sessionid");var url='ajax/rkclick.php?rkvid='+tnvonid+'&rkid='+tnid+"&typ="+tcTyp+"&sessionid="+mySessionID;var req=new Ajax.Request(url,{method:'get',asynchronous:false});}
function dis_hlp(hlpID){mySessionNr=$("wrapper").getAttribute("sessionnr");var url='ajax/dis_hlp.php?hlpid='+hlpID+"&sessionnr="+mySessionNr;var req=new Ajax.Request(url,{method:'get',asynchronous:false});}
function UpdateKurzArtikel(myID){myVarID=$F("varid_"+myID);if($("varid_"+myID).options[$("varid_"+myID).selectedIndex].getAttribute("class")!=null){if($("varid_"+myID).options[$("varid_"+myID).selectedIndex].getAttribute("class").indexOf("sel_gr")>-1){$("varid_"+myID).addClassName("sel_gr");}else{$("varid_"+myID).removeClassName("sel_gr");}}else{$("varid_"+myID).removeClassName("sel_gr");}
$('contentb_quick').innerHTML="<img src=\"include/showpic.php?Key=bildgross1&artikelid="+myID+"&varid="+myVarID+"\" class=\"imgborder\">";}
function UpdateGalPic(myID){
            myVarID=$F("varid_"+myID);
            
            if ( typeof($("varid_"+myID).selectedIndex)!='undefined') { ; 
                        if($("varid_"+myID).options[$("varid_"+myID).selectedIndex].getAttribute("class")!=null){
                                    if($("varid_"+myID).options[$("varid_"+myID).selectedIndex].getAttribute("class").indexOf("sel_gr")>-1){
                                                $("varid_"+myID).addClassName("sel_gr");
                                    }else{
                                                $("varid_"+myID).removeClassName("sel_gr");
                                    }
                        }else{
                                    $("varid_"+myID).removeClassName("sel_gr");
                        }
            }
if($('GalPic_'+myID))$('GalPic_'+myID).setAttribute("src","include/showpic.php?Key=bildklein&artikelid="+myID+"&varid="+myVarID,1);

if($('imgContent')) {
            
            cSessionnr=$("wrapper").getAttribute("sessionnr") ;
            cSessionid=$("wrapper").getAttribute("sessionid") ;
           new Ajax.Request("ajax/getImgContent.php?sessionnr="+cSessionnr + "&sessionid="+cSessionid + "&artikelid="+myID+"&varid="+myVarID,{method:'get',asynchronous:false,onSuccess:storeArtikelImg});
}
function storeArtikelImg (transport) {
            $('imgContent').update(transport.responseText) ;
            setTimeout('MagicZoom.refresh()', 300);
}
//if($('Bildgross1_'+myID))$('Bildgross1_'+myID).setAttribute("src","include/showpic.php?Key=bildgross1&artikelid="+myID+"&varid="+myVarID,1);



}
function ShowKurzArtikel(myID,myRecId, myVarID){
            
            if ( myVarID == undefined) myVarID = myID ;
            
            if ( HideArtikelQuick == 1 ) {
                        
                        mySessionNr = $("wrapper").getAttribute("sessionnr") ;
                        document.location.href = "artikeldetail.php?sessionnr=" + mySessionNr + "&artikelid=" + myID + "&varid=" + myVarID;
                        return ;
            }
            
            if($('ArtContent')){if($('ArtContent').getAttribute("artikelid")==myID){HideKurzArtikel();return;}}
artX=$("dessous").offsetLeft;mySessionNr=$("wrapper").getAttribute("sessionnr");mySessionId=$("wrapper").getAttribute("sessionid");var scrOfX=0,scrOfY=0,scrHgt=0,scrWdt=0;if(typeof(window.pageYOffset)=='number'){scrOfY=window.pageYOffset;scrOfX=window.pageXOffset;scrHgt=window.innerHeight;scrWdt=window.innerWidth;}else if(document.body&&(document.body.scrollLeft||document.body.scrollTop)){scrOfY=document.body.scrollTop;scrOfX=document.body.scrollLeft;}else if(document.documentElement&&(document.documentElement.scrollLeft||document.documentElement.scrollTop)){scrOfY=document.documentElement.scrollTop;scrOfX=document.documentElement.scrollLeft;}
scrHgt=(scrHgt==0&document.documentElement.clientHeight>0)?document.documentElement.clientHeight:scrHgt;scrWdt=(scrWdt==0&document.documentElement.clientWidth>0)?document.documentElement.clientWidth:scrWdt;if(scrHgt>0){artY=scrOfY+(scrHgt/2)-(400/2);}else{artY=scrOfY+100;}
if(artY<120)artY=120;showOverlay();if(!$('ArtContent')){var div1=document.createElement('div');appdiv1=document.body.appendChild(div1);appdiv1.innerHTML='<div id="ArtContent" class="ArtContent" artikelid="0" style="display:none;z-index:99"><div id="ArtContentDetail" style="position:absolute;left:18px;top:18px;width:380px;height:200px"></div></div>';}
$('ArtContent').style.left=(artX+140)+"px";$('ArtContent').style.top=(artY-7)+"px";$('ArtContentDetail').update("<img src=\"images/ajax-loader.gif\" style=\"margin:170px 290px \">");$('ArtContent').setAttribute("artikelid",myID,0);$('ArtContent').show()
var url='artikelquick.php?artikelid='+myID + "&varid=" + myVarID +'&sessionnr='+mySessionNr+'&sessionid='+mySessionId;if(myRecId>'')url+='&epRecID='+myRecId;var req=new Ajax.Request(url,{method:'get',asynchronous:false,onSuccess:storeArtikelQuick});}
function storeArtikelQuick(transport){var notice=$('ArtContentDetail');notice.update(transport.responseText);}
function showPrice(tnId,tnVarid){if(tnVarid==-1){if($("varid_"+tnId)){tnVarid=$F("varid_"+tnId);}else{tnVarid=tnId;}}
if($('aprice'))$('aprice').update("<img src=\"images/ajax-loader-klein.gif\">");mySessionNr=$("wrapper").getAttribute("sessionnr")
if($('ie6price'))$('ie6price').update("<img src=\"images/ajax-loader-klein.gif\">");mySessionNr=$("wrapper").getAttribute("sessionnr")

var url='ajax/getPreis.php?artikelid='+tnId+'&varid='+tnVarid+'&sessionnr='+mySessionNr
var req=new Ajax.Request(url,{method:'get',asynchronous:false,onSuccess:storePrice});}
function storePrice(transport){
            if($('aprice'))$('aprice').update(transport.responseText);
            if($('ie6price'))$('ie6price').update(transport.responseText);
}
function TippInit(){document.onmousemove=updateContentPos;if(!$('TipContent')){var div=document.createElement('div');appdiv=document.body.appendChild(div);appdiv.innerHTML='<div id="TipContent" class="imgborder" style="border-width:3px;position:absolute;display:none;z-index:1"></div>';}
var elms=$('content').getElementsByClassName('item');for(var i=0;i<elms.length;i++){var elmsVarPics=elms[i].getElementsByClassName('VarPics');for(var j=0;j<elmsVarPics.length;j++){var elmsVarPicsPics=elmsVarPics[j].getElementsByClassName('VarPic');for(var k=0;k<elmsVarPicsPics.length;k++){elmsVarPicsPics[k].observe('mouseover',function(event){ChangeColor(this.getAttribute("artikelid"),this.getAttribute("varid"));});}}
var images=elms[i].getElementsByClassName('imgborder');for(var j=0;j<images.length;j++){images[j].observe('mouseover',function(event){ShowVarPic(this.getAttribute("artikelid"),this.getAttribute("varid"));});images[j].observe('mouseout',function(event){HideVarPic(this.getAttribute("artikelid"));});}}
var elms=$('content').getElementsByClassName('infobutton');for(var i=0;i<elms.length;i++){elms[i].observe('click',function(event){ShowKurzArtikel(this.getAttribute("artikelid"));});}}
var ArtTimerID=0;var x=0;var y=0;function hideRegisters(){if(hideRegList.indexOf("E")>0)$('btn_E').hide();if(hideRegList.indexOf("C")>0)$('btn_C').hide();if(hideRegList.indexOf("D")>0)$('btn_D').hide();}

function ShowRegister(tcRegister, tnMaxRegister){
            
            for(x=1;x<=tnMaxRegister;x++){
                        var myChar=String.fromCharCode(64+x);
                        $('reg_'+myChar).hide();
                        $('btn_img_'+myChar).setAttribute("src", "images/tabs/tab_"+myChar+"_n.gif", 1) ;

            }

            $('reg_'+tcRegister).show();
            $('btn_img_'+tcRegister).setAttribute("src", "images/tabs/tab_"+tcRegister+"_a.gif", 1) ;


            if(tcRegister=='B'){
                        $('ke_email').focus();
            }else if(tcRegister=='C' && $('vf_email')){
                        $('vf_email').focus();
            }else{
                        $('searchstring').focus();    
            }
}

function load_GB_Content(){var url='http://www.dessous-waesche-shop.de/ajax/getGB.php';var req=new Ajax.Request(url,{method:'get',asynchronous:false,onSuccess:storeEntry});}
function storeEntry(transport){var notice=$('GBContent');notice.update(transport.responseText);Effect.toggle('GBContent','slide',{duration:1});}
function loadKurzBasket(cSessionnr){
            var JsHost = (("https:" == document.location.protocol) ? "https://" : "http://");
            var url= JsHost + '//www.dessous-waesche-shop.de/ajax/getkurzBasket.php?sessionnr='+cSessionnr;
            if ( $('kurzBasket') ) {
                        var req2=new Ajax.Request(url,{method:'get',asynchronous:true,onSuccess:storekurzBasket});
            }
}

function loadBasket(cSessionnr){

if ( $('basketinfoTopContent') ) {
            $('basketinfoTopContent').update("");
}

if(!$('BasketContent'))return;if($('ArtContent'))HideKurzArtikel();var scrOfX=0,scrOfY=0,scrHgt=0,scrWdt=0;if(typeof(window.pageYOffset)=='number'){scrOfY=window.pageYOffset;scrOfX=window.pageXOffset;scrHgt=window.innerHeight;scrWdt=window.innerWidth;}else if(document.body&&(document.body.scrollLeft||document.body.scrollTop)){scrOfY=document.body.scrollTop;scrOfX=document.body.scrollLeft;}else if(document.documentElement&&(document.documentElement.scrollLeft||document.documentElement.scrollTop)){scrOfY=document.documentElement.scrollTop;scrOfX=document.documentElement.scrollLeft;}
if(scrOfY>250){$('wkListe').style.top=scrOfY+50+"px";if($('wkListeFrame'))$('wkListeFrame').style.top=scrOfY+50+"px";}else{$('wkListe').style.top="83px";if($('wkListeFrame'))$('wkListeFrame').style.top="83px";}
$('wkListe').show();if($('wkListeFrame'))$("wkListeFrame").show();$('BasketContent').update('<img src="images/ajax-loaderG.gif" border="0" style="margin:50px 120px">');

var JsHost = (("https:" == document.location.protocol) ? "https://" : "http://");

if ( $('basketinfoTopContent') ) {
            
            
            var url= JsHost + 'www.dessous-waesche-shop.de/basketinfoTop.php?sessionnr='+cSessionnr + "&r=" + Math.random();
            var req1=new Ajax.Request(url,{method:'get',asynchronous:true,onSuccess:storebasketinfoTop});
}


var url= JsHost + 'www.dessous-waesche-shop.de/ajax/getBasket.php?sessionnr='+cSessionnr;
var req1=new Ajax.Request(url,{method:'get',asynchronous:true,onSuccess:storeBasket});

var url= JsHost + '//www.dessous-waesche-shop.de/ajax/getkurzBasket.php?sessionnr='+cSessionnr;
var req2=new Ajax.Request(url,{method:'get',asynchronous:true,onSuccess:storekurzBasket});


}


function storeBasket(Btransport){
            var Bnotice=$('BasketContent');
            if ( Btransport.responseText.indexOf("Spartipp") > 0 || Btransport.responseText.indexOf("Hinweis") > 0) {
                        $('wkListeFrame').style.height="570px" ;
                        $('wkListe').style.height="570px" ;
            }
            $('BasketContent').update(Btransport.responseText);
            
            if ( Btransport.responseText.indexOf("ist leer") > 0 ) {
                        //window.location.reload();
            }
}


function storebasketinfoTop(Btransport){

            if ( Btransport.responseText.indexOf("<li") > 0 ) {

                        $('basketinfoTopContent').update(Btransport.responseText);
                        if ( $('basketinfoTopContent').getStyle("display") == "none" ) {
                                    Effect.BlindDown('basketinfoTopContent', { duration: 1.0 });
                        }
            } else {
                    $('basketinfoTopContent').hide() ; 
            }
}


function storekurzBasket(Btransport){

	    if (ShowKurzBasketTimerID>0) {
		    window.clearInterval(ShowKurzBasketTimerID);
		    ShowKurzBasketTimerID = 0;
	    }

            var Bnotice=$('kurzBasket');
            $('kurzBasket').update(Btransport.responseText);
}


var SuchHilfeTimerID=0;var WkTimerID=0;function show_wk_inhalt(o){if(WkTimerID>0){window.clearInterval(WkTimerID);}
$("wk_inhalt").show();hide_suchhilfe();loadWK_Content();}
function clear_wk_timer(){if(WkTimerID>0){window.clearInterval(WkTimerID);}}
function hide_wk_inhalt(o){WkTimerID=window.setInterval("$('wk_inhalt').hide()",1000);}
function show_suchhilfe(){if(SuchHilfeTimerID>0){window.clearInterval(SuchHilfeTimerID);}
$("suchhilfe").show();}
function hide_suchhilfe(){SuchHilfeTimerID=window.setInterval("hide_suchhilfe_timer()",900);}
function hide_suchhilfe_timer(){window.clearInterval(SuchHilfeTimerID);SuchHilfeTimerID=0;$("suchhilfe").hide();}
function loadWK_Content(){cSessionnr=$("wrapper").getAttribute("sessionnr");cSessionid=$("wrapper").getAttribute("sessionid");if(!$('wk_content'))return;var url='http://www.dessous-waesche-shop.de/ajax/getBasket.php?sum=1&sessionnr='+cSessionnr+"&sessionid="+cSessionid;var req=new Ajax.Request(url,{method:'get',asynchronous:true,onSuccess:storeWK_Content});}
function storeWK_Content(Btransport){$('wk_content').update(Btransport.responseText);}
function BH(size){cSessionnr=$("wrapper").getAttribute("sessionnr");cSessionid=$("wrapper").getAttribute("sessionid");loc="bh-groesse-"+size+".htm?sessionnr="+cSessionnr+"&sessionid="+cSessionid;if(document.getElementById('vBestand').checked){;loc=loc+"&vbestand=1"}
document.location.href=loc;return false;}
var menuids=["c4leftnavi1"]
var NavTimerID=0;function initc4leftnavi(){if(!$("c4leftnavi"))return;$("c4leftnavi").show();for(var i=0;i<menuids.length;i++){var ultags=document.getElementById(menuids[i]).getElementsByTagName("ul")
for(var t=0;t<ultags.length;t++){ultags[t].parentNode.getElementsByTagName("a")[0].className+=" sfst"
if(ultags[t].parentNode.parentNode.id==menuids[i])
ultags[t].style.left=ultags[t].parentNode.offsetWidth+"px"
else
ultags[t].style.left=ultags[t-1].getElementsByTagName("a")[0].offsetWidth+"px"
ultags[t].parentNode.onmouseover=function(){this.getElementsByTagName("ul")[0].style.display="block"}
ultags[t].parentNode.onmouseout=function(){this.getElementsByTagName("ul")[0].style.display="none"}}
for(var t=ultags.length-1;t>-1;t--){ultags[t].style.visibility="visible"
ultags[t].style.display="none"}}
markActive($("c4leftnavi"));}
if(window.addEventListener)
window.addEventListener("load",initc4leftnavi,false)
else if(window.attachEvent)
window.attachEvent("onload",initc4leftnavi)
function HideNav(){for(var i=0;i<menuids.length;i++){var ultags=document.getElementById(menuids[i]).getElementsByTagName("ul")
for(var t=0;t<ultags.length;t++){ultags[t].style.display="none"}}}
function markActive(o){var lnMark=0;var litags=o.getElementsByTagName("li")
for(var t=0;t<litags.length;t++){if(litags[t].getElementsByTagName("a")[0].getAttribute("href").indexOf("-k-"+nAktiveKat+".")>0){;litags[t].getElementsByTagName("a")[0].className+=" nav_active";lnMark=1;}
if(litags[t].getElementsByTagName("a")[0].getAttribute("href").indexOf("-gr-"+nAktiveGrupp+".")>0){;litags[t].getElementsByTagName("a")[0].className+=" nav_active";lnMark=1;}
if(markActive(litags[t])==1){litags[t].getElementsByTagName("a")[0].className+=" nav_active";}}
return lnMark;}



var nBlaetterPos  =  0 ;
	    var cBlaetterItem = "" ;
	    
     	    function ChangeItemsPos(tnBlaetterPos, nBlaetterCount, tcBlaetterItem) {
      
		  var imgEl = $(tcBlaetterItem).getElementsByClassName('bl_butt');
		  for(var j=0; j<imgEl.length; j++){
			
		      if (imgEl[j].getAttribute("id") == 'bl_' + tnBlaetterPos) {
			imgEl[j].setStyle('font-weight:bold') ;
		      } else {
			imgEl[j].setStyle('font-weight:normal') ;		  
		      }
		  }
      
		  
		  nBlaetterPos = tnBlaetterPos ;
      
		  var ButtEl = $(tcBlaetterItem).getElementsByClassName('bl_butt');
		  for(var j=0; j<ButtEl.length; j++){
			
		  }
      
		  var ItemEl = $(tcBlaetterItem).getElementsByClassName('ItemList');
		  for(var j=0; j<ItemEl.length; j++){
			cBlaetterItem = ItemEl[j] ;
		  }
		  
		  DrawItems(nBlaetterPos, nBlaetterCount, tcBlaetterItem) ;
	    }
	    
      
	    function ChangeItems(nChange, nBlaetterCount, tcBlaetterItem) {
		
		  nBlaetterPos = nBlaetterPos - nChange ;
      
		  var ItemEl = $(tcBlaetterItem).getElementsByClassName('ItemList');
		  for(var j=0; j<ItemEl.length; j++){
			cBlaetterItem = ItemEl[j] ;
		  }
	      
		  DrawItems(nBlaetterPos, nBlaetterCount, tcBlaetterItem) ;
	    }
	    
	    
	    function DrawItems(tnBlaetterPos, nBlaetterCount, tcBlaetterItem) {
		
		  cBlaetterItem.update('');
		  
		  // DIV mit Settings	    
		  var ItemEl = $(tcBlaetterItem).getElementsByClassName('setting')  ;
      
		  for(var j=0; j<ItemEl.length; j++){
			cBlaetterIds = ItemEl[j].getAttribute("IdListe").split(",") ;
			ItemEl[j].setAttribute("bl_pos", nBlaetterPos , 0) ;
		  }
		  
		  for (i=1;i>nBlaetterPos ;i--) {
		      cBlaetterItem.update(cBlaetterItem.innerHTML + '<li class="item"></li>');
		  }
      
	    
		  for (i=0;i<nBlaetterCount ;i++) {
		  
		      if (tnBlaetterPos + i-1 < cBlaetterIds.length) {
			      newItem(cBlaetterItem, cBlaetterIds[tnBlaetterPos + i-1], i+1, tcBlaetterItem) ;
		      } else {
			      cBlaetterItem.update(cBlaetterItem.innerHTML + '<li class="item"></li>');
		      }
		  }
      
		  if (tnBlaetterPos == 1) {
		      // Zurück-Button ausblenden
		  }
		  
		  if (cBlaetterIds.length == tnBlaetterPos + 2) {
		      // Weiter-Button ausblenden
		  }
	    }
	    
	    function newItem(cBlaetterItem, nArtikelID, nItemPos, tcBlaetterItem) {
		
		  mySessionNr = $("wrapper" ).getAttribute("sessionnr")
		  
		  var ItemEl = $(tcBlaetterItem).getElementsByClassName('setting')  ;
      
		  for(var j=0; j<ItemEl.length; j++){
			cBlaetterUrl = ItemEl[j].getAttribute("url") ;
		  }
		  
		  var url = cBlaetterUrl + '?artikelid=' + nArtikelID + '&sessionnr=' + mySessionNr + '&ItemPos=' + nItemPos
		  
		  var req = new Ajax.Request(url,
			{
			      method: 'get',
			      asynchronous: false,
			      onSuccess: storeItem
			}); ;
	    }
      
	    function storeItem(transport) {
		  if ( cBlaetterItem)  cBlaetterItem.update( cBlaetterItem.innerHTML + transport.responseText);
	    }
            
            

            function ScrollHandler() {
        
		var scrOfX = 0, scrOfY = 0, scrHgt = 0, scrWdt = 0;
		if( typeof( window.pageYOffset ) == 'number' ) {
		  //Netscape compliant
		  scrOfY = window.pageYOffset;
		  scrHgt = window.innerHeight ;
		} else if( document.body && ( document.body.scrollLeft || document.body.scrollTop ) ) {
		  //DOM compliant
		  scrOfY = document.body.scrollTop;
		} else if( document.documentElement && ( document.documentElement.scrollLeft || document.documentElement.scrollTop ) ) {
		  //IE6 standards compliant mode
		  scrOfY = document.documentElement.scrollTop;
		}
		
		scrHgt = (scrHgt==0 & document.documentElement.clientHeight>0) ? document.documentElement.clientHeight : scrHgt;
		

                        var imgEl = $("dessous").getElementsByClassName('imgLoader');
                                            
                        for(var j=0; j < imgEl.length; j++){
                                
                                if ((getY(imgEl[j]) + imgEl[j].getHeight() + 150) > scrOfY && scrOfY + scrHgt > getY(imgEl[j] ) && ! imgEl[j].getAttribute("srcL")=='' ) {
                                        imgEl[j].setAttribute("src", imgEl[j].getAttribute("srcL"), 1) ;
                                        imgEl[j].setAttribute("srcL", '', 1) ;
                                }
                        }
            }


	function getY (el) {
		y = el.offsetTop;
		if (!el.offsetParent) return y;
		else return (y+getY(el.offsetParent));
	}
        
function toggle(obj) {
	var el = document.getElementById(obj);
	if ( el.style.display != 'block' ) {
		el.style.display = 'block';
	}	else {
		el.style.display = 'none';
	}
}
        
window.onscroll = ScrollHandler;
window.onload = initHandler ;

function initHandler () {

            ScrollHandler() ;
            
            if ( Shadowbox ) Shadowbox.init({
                handleOversize: "drag",
                modal: true
            });
            
            loadKurzBasket($("wrapper").getAttribute("sessionnr")) ;
            
            if ($("searchstring")) new Ajax.Autocompleter("searchstring","AutocompleteChoices","ajax/get_slist.php",{frequency:0.1,minChars:2,afterUpdateElement:formsubmit});function formsubmit(){$('suchform').submit();}
            
            if ($("id_ort")) new Ajax.Autocompleter("id_ort","AutocompleteChoices","ajax/get_ort.php",{frequency:0.1,minChars:3});

            if ( typeof(FirstVarLoad)=="function" ) FirstVarLoad () ;
            
            // Kann so verwendet werden:
            //var element = document.createElement("script");
            //element.src = "include/basket.js";
            //document.body.appendChild(element);
            
}

function showvideo (lcVideoFile) {


            if(!$('VideoContent')){
                        var div1=document.createElement('div');
                        appdiv1=document.body.appendChild(div1);
                        appdiv1.innerHTML='<div id="VideoContent" style="overflow:hidden;position:absolute;height:300px;width:500px;display:none;z-index:99"></div>';
            }
            artX=$("dessous").offsetLeft;
            var scrOfX=0,scrOfY=0,scrHgt=0,scrWdt=0;
            if(typeof(window.pageYOffset)=='number'){
                        scrOfY=window.pageYOffset;
                        scrOfX=window.pageXOffset;
                        scrHgt=window.innerHeight;
                        scrWdt=window.innerWidth;
            }else if(document.body&&(document.body.scrollLeft||document.body.scrollTop)){
                        scrOfY=document.body.scrollTop;
                        scrOfX=document.body.scrollLeft;
            }else if(document.documentElement&&(document.documentElement.scrollLeft||document.documentElement.scrollTop)){
                        scrOfY=document.documentElement.scrollTop;
                        scrOfX=document.documentElement.scrollLeft;
            }
            scrHgt=(scrHgt==0&document.documentElement.clientHeight>0)?document.documentElement.clientHeight:scrHgt;
            scrWdt=(scrWdt==0&document.documentElement.clientWidth>0)?document.documentElement.clientWidth:scrWdt;
            if(scrHgt>0){
                        artY=scrOfY+(scrHgt/2)-(400/2);
            }else{
                        artY=scrOfY+100;
            }
            if(artY<120) artY=120;
            showOverlay();

            $('VideoContent').style.left=(artX+240)+"px";
            $('VideoContent').style.top=(artY-7)+"px";

            $('VideoContent').show();
            $('VideoContent').innerHTML = '<div id="embed_player"><p><a href="http://www.adobe.com/go/getflashplayer"><img src="http://www.adobe.com/images/shared/download_buttons/get_flash_player.gif" alt="Get Adobe Flash player" /></a></p></div>' ;
            
            var flashvars = {flvpFolderLocation: "http://www.dessous-waesche-shop.de/flvplayer/", 
                        flvpVideoSource: lcVideoFile, 
                        flvpWidth: "500", 
                        flvpHeight: "280", 
                        flvpInitVolume: "50", 
                        flvpTurnOnCorners: "false", 
                        flvpBgColor: "FFFFFF"
            };
            var params = {
            bgcolor: "FFFFFF", 
            menu: "true", 
            allowfullscreen: "false"
            };
            swfobject.embedSWF("http://www.dessous-waesche-shop.de/flvplayer/FLVplayer.swf", "embed_player", "500", "280", "9.0.0", "http://www.dessous-waesche-shop.de/flvplayer/FLVplayer.swf/expressInstall.swf", flashvars, params);

                          
}



            //basket.js:

/*  Copyright Heiko Walther  |  www.fif.de
 * -----------------------------------------------------------
 *
 * Artikel in Warenkorb legen und ggf. per AJAX den Inhalt anzeigen (loadBasket)
 *
 * 25.09.2008
 */

var ArtID          = 0;
var VarID          = 0;
var pcSessionnr    = "";
var pnSessionID    = 0;
var pnShowVarError = 0;  // Hinweis, wenn Var nicht gewählt
var $pcVarError    = "Bitte Größe bzw. Farbe wählen" ;
var pnBasketID     = 0;


function AddVarToBasket(lnArtID, lnVarID, lcSessionnr, lnSessionID, lcUrsprung){

	document.body.style.cursor='wait'
	
	// 08.06.09: Ursprung der Warenkorbpos. ermitteln
	
	if ( lcUrsprung != undefined) {
	    cUrsprung = lcUrsprung ;
	} else if ($("ArtContent") && $("ArtContent").getStyle("display") == "block" ) {
    	    cUrsprung = "Q" ;
	} else if ( document.URL.indexOf("-a-") > 0 | document.URL.indexOf("artikel") > 0 ) {
	    cUrsprung = "A" ;
	} else if ( document.URL.indexOf("-k-") > 0 | document.URL.indexOf("katalog") > 0 ) {
	    cUrsprung = "K" ;
	} else if ( document.URL.indexOf("basket") > 0) {
	    cUrsprung = "B" ;
	} else if ( document.URL.indexOf("index") > 0) {
	    cUrsprung = "H" ;
	} else {
	    cUrsprung = "X" ;
	}

	if(typeof ClickTaleTag=='function') ClickTaleTag ("Warenkorb-Ajax") ;
	
	ArtID = lnArtID;
        VarID = lnVarID;
        pcSessionnr = lcSessionnr;
        pnSessionID = lnSessionID;

        try {
	    if ( $('artmenge_' + ArtID + "_" + VarID) ) {
		var lnMenge = $('artmenge_' + ArtID + "_" + VarID).value ;
	    } else {
		var lnMenge = 1 ;
	    }
        } catch (e) {
            var lnMenge = 1;
        }

	var url = 'include/modifybasket.php?bursp=' + cUrsprung + '&AddTo=true&ajx=1&gotourl=-&varid=' + lnVarID + '&artikelid=' + lnArtID + '&menge=' + lnMenge + '&sessionnr=' + lcSessionnr + '&sessionid=' + lnSessionID;
	var req = new Ajax.Request(url,
	       {
		  method: 'get',
		  asynchronous: false,
		  onSuccess: addToBasketSuccess()
	       });
	document.body.style.cursor='default'

        //loadBasket(pcSessionnr);

	if(typeof ShowBasketInfo=='function') {
	    ShowBasketInfo (lnArtID, lnVarID, lcSessionnr, lnSessionID) ;
	    
	} else {
	    if (confirm("Der Artikel wurde in den Warenkorb gelegt.\n\nOK = Warenkorb aufrufen | Abbrechen = weiter einkaufen")) {
		    window.location.href='basket.php?sessionnr=' + pcSessionnr + "&sessionid=" + pnSessionID; 
	    }
	}

}


function addToBasketSuccess() {
       
        //if (document.loadBasket) {
		//loadBasket();
	//}
	if ( $('tr_' + ArtID + "_" + VarID) ) {
	    $('tr_' + ArtID + "_" + VarID).setStyle("opacity: 0.5");
	

	    if (VarBasketAddCheckImage) {
		$('td' + VarBasketCheckColumn + '_' + ArtID + "_" + VarID).update('<img border="0" src="' + VarBasketAddCheckImage + '">');
	    }
	}

	if(typeof storekurzBasket=='function' & $('kurzBasket') ) {
	    var urlKurz='ajax/getkurzBasket.php?sessionnr='+pcSessionnr;
	    ShowKurzBasketTimerID = window.setInterval("var req2=new Ajax.Request(\"" + urlKurz + "\",{method:'get',asynchronous:true,onSuccess:storekurzBasket})", 380);
	}

}


function QuickBasket(myID, myVarID, lcUrsprung, VarID_ID) {

	

	if ( VarID_ID == undefined ) VarID_ID = myID ;

	// 16.04.09  Nur Button und VarSelekt notwendig

	mySessionNr = $("wrapper" ).getAttribute("sessionnr") ;
	mySessionid = $("wrapper" ).getAttribute("sessionid") ;

	if (myVarID == undefined || myVarID==-1) {
	    if ($("varid_" + VarID_ID)) {
		myVarID = $("varid_" + VarID_ID).value ;

		if ( pnShowVarError == 1 & myVarID == -1 ) {
		    $("varid_" + VarID_ID).addClassName("ComboError")
		    alert($pcVarError) ;
		    return ;
		}
	    }
	    
	    if ($("varid_" + VarID_ID)) {
		myVarID = $("varid_" + VarID_ID).value ;
	    } else {
		myVarID = myID ;
	    }
	}

	AddVarToBasket(myID, myVarID, mySessionNr, mySessionid, lcUrsprung) ;
}

function RemFromBasket(lnArtID, lnVarID, lcSessionnr, lnSessionID) {
    	document.body.style.cursor='wait'
	
	ArtID = lnArtID;
        pcSessionnr = lcSessionnr;
        pnSessionID = lnSessionID;
	
	var url = 'include/modifybasket.php?Clear=true&varid=' + lnVarID + '&artikelid=' + lnArtID + '&FirstArtikel=&sessionnr=' + lcSessionnr + '&sessionid=' + lnSessionID ;

	var req = new Ajax.Request(url,
	       {
		  method: 'get',
		  asynchronous: false,
		  onSuccess: RemSuccess (lnArtID, lnArtID, lcSessionnr, lnSessionID)
		  
	       });
	document.body.style.cursor='default'
	
}

function RemSuccess (lnArtID, lnVarID, lcSessionnr, lnSessionID) {
    
    	if(typeof ShowBasketInfo=='function') {
	    $('BasketContent').update('<img src="images/ajax-loaderG.gif" border="0" style="margin:50px 120px">')
	    ShowBasketTimerID = window.setInterval("ShowBasketInfo (" + lnArtID + "," + lnVarID + ",'" + lcSessionnr + "'," + lnSessionID + ")", 300);
	    //ShowBasketInfo (lnArtID, lnVarID, lcSessionnr, lnSessionID) ;
	}

	if(typeof storekurzBasket=='function') {
	    var urlKurz='ajax/getkurzBasket.php?sessionnr='+lcSessionnr;
	    ShowKurzBasketTimerID = window.setInterval("var req2=new Ajax.Request(\"" + urlKurz + "\",{method:'get',asynchronous:true,onSuccess:storekurzBasket})", 380);
}
}


function AddToMerkliste(lnArtID, lcSessionnr, lnSessionID){

	document.body.style.cursor='wait'
	
	ArtID = lnArtID;
        pcSessionnr = lcSessionnr;
        pnSessionID = lnSessionID;

	if ($("varid_" + lnArtID)) {
		myVarID = $("varid_" + lnArtID).value ;
        } else {
		myVarID = lnArtID ;
	}

	var url = 'include/merkliste.php?do=add&artikelid=' + lnArtID + '&varid=' + myVarID + '&sessionnr=' + lcSessionnr + '&sessionid=' + lnSessionID;

	if (typeof(Ajax)=="object" ) {

	    var req = new Ajax.Request(url,
		   {
		      method: 'get',
		      asynchronous: false
		   });

	} else {  
	    
	    // Prototype nicht gefunden
	    // Version für iQuery
	    
	        $.get(url, '')
	}
	
	
	document.body.style.cursor='default'

        

	if (confirm("Der Artikel wurde zum Merkzettel hinzugefügt.\n\nOK = Merkzettel aufrufen | Abbrechen = weiter einkaufen")) {
		window.location.href='include/merkliste.php?do=show&sessionnr=' + pcSessionnr + "&sessionid=" + pnSessionID ;
	}
}



function RemFromMerkliste(lnArtID, lcSessionnr, lnSessionID){

    	document.body.style.cursor='wait'

	if ($("art_" + lnArtID)) {
	    if (typeof(setOpacity)=="function" ) {
		$("art_" + lnArtID).setOpacity(0.3) ;  // Diesen Artikel transparent machen
	    }
	}	
	
	if ($("varid_" + lnArtID)) {
		myVarID = $("varid_" + lnArtID).value ;
        } else {
		myVarID = lnArtID ;
	}	
	
	
	ArtID = lnArtID;
        pcSessionnr = lcSessionnr;
        pnSessionID = lnSessionID;

	var url = 'include/merkliste.php?do=rem&artikelid=' + lnArtID + '&varid=' + myVarID + '&sessionnr=' + lcSessionnr + '&sessionid=' + lnSessionID ;

	if (typeof(Ajax)=="object" ) {
	    var req = new Ajax.Request(url,
		   {
		      method: 'get',
		      asynchronous: false,
		      onSuccess: window.location.href='include/merkliste.php?do=show&sessionnr=' + pcSessionnr + "&sessionid=" + pnSessionID 
		      
		   });
	} else {  
	    
	    // Prototype nicht gefunden
	    // Version für iQuery
	    
	        $.get(url, function(text){
		    window.location.href='include/merkliste.php?do=show&sessionnr=' + pcSessionnr + "&sessionid=" + pnSessionID ;
		})
	}
	
	document.body.style.cursor='default'

}

function ClearMerkliste(lcSessionnr, lnSessionID){

    	document.body.style.cursor='wait'
	
	
        pcSessionnr = lcSessionnr;
        pnSessionID = lnSessionID;

	var url = 'include/merkliste.php?do=clear&sessionnr=' + lcSessionnr + '&sessionid=' + lnSessionID ;

	if (typeof(Ajax)=="object" ) {
	    var req = new Ajax.Request(url,
		   {
		      method: 'get',
		      asynchronous: false,
		      onSuccess: window.location.href='include/merkliste.php?do=show&sessionnr=' + pcSessionnr + "&sessionid=" + pnSessionID 
		      
		   });
	} else {  
	    
	    // Prototype nicht gefunden
	    // Version für iQuery
	    
	        $.get(url, function(text){
		    window.location.href='include/merkliste.php?do=show&sessionnr=' + pcSessionnr + "&sessionid=" + pnSessionID ;
		})
	}
	
	document.body.style.cursor='default'

}

function changeBasketItem(tnBasketID) {
    pnBasketID = tnBasketID ;
    if ( $('basketItem_' + tnBasketID) ) {
	
	new Effect.Opacity('basketItem_' + tnBasketID, { from: 1.0, to: 0, duration: 0.1 });
	
	mySessionNr = $("wrapper" ).getAttribute("sessionnr")
	var req = new Ajax.Request('basket_change.php?sessionnr=' + mySessionNr + "&basketid=" + tnBasketID ,{method:'get',asynchronous:true,onSuccess:storeChangeItem});	
    }
}

function storeChangeItem (Btransport) {
      $('basketItem_' + pnBasketID ).update(Btransport.responseText);
      new Effect.Opacity('basketItem_' + pnBasketID, { from: 0, to: 1, duration: 1 });
}

function hideBasketTabelle () {
    	if ( typeof($('basket_tabelle'))=='object' & (typeof(Effect)=='function') ) {
		new Effect.Opacity('basket_tabelle', { from: 1.0, to: 0.2, duration: 0.6 });
	}
}//var_class.js:

/*  Copyright Heiko Walther  |  www.fif.de
 * -----------------------------------------------------------
 *
 * Wird für var_class (getMultiSelekt) benötigt
 *
 * 06.05.2010
 */

function FindVar( tnGesamt, tnVar1, tnVar2, tnVar3, tnLevel ) {
	
	nArtikelId = $F("artikelid") ;
	lnVarId    = 0;
	lcFindWert = ""
	
	for(lnEig=1 ; lnEig<=3 ; lnEig++) {
		
		myEig      = 0 ;
		
		if ( lnEig==1 ) myEig = tnVar1 ;
		if ( lnEig==2 ) myEig = tnVar2 ;
		if ( lnEig==3 ) myEig = tnVar3 ;

		if ( myEig>0 && $("Eig" + myEig) && escape($F("Eig" + myEig))  != 'null') {

			lcFindWert = lcFindWert + "&f"+ myEig + "=" + myEig + "&v"+ myEig + "=" + escape($F("Eig" + myEig)) ;
		}
	}

	new Ajax.Request("include/var_class_ajax.php?artikelid=" + nArtikelId + "&eig=1" + lcFindWert , {method:'get', asynchronous:false, onSuccess:storeVarId});

	function storeVarId(transport) {  // Gefundene VarId speichern
		
		if ( transport.responseText > '' ) {

			var response = eval("(" + transport.responseText + ")");
			if ( response.artvars.artvar.length > 0 ) {
				$("varid_" + nArtikelId).setAttribute("value", response.artvars.artvar[0].id, 1);
			}
		}
	}

	if (typeof(showPrice)=='function') {
	    showPrice($F("artikelid") , $F("varid_" + nArtikelId)) ;
	}
	
}


function AddEigensch ( tnEig, tnGesamt, tnVar1, tnVar2, tnVar3, tnLevel ) {

	nArtikelId = $F("artikelid") ;
	
	if ( tnLevel > 0 ) {
		
		lcWert = "" ;
		
		for(lnEig=1 ; lnEig<=tnLevel ; lnEig++) {
			
			myEig = 0 ;
			if ( lnEig==1 && tnEig != 1 ) myEig = tnVar1 ;
			//if ( lnEig==2 && tnEig != 2 ) myEig = tnVar2 ;
			//if ( lnEig==3 && tnEig != 3 ) myEig = tnVar3 ;

			if ( myEig>0 && $("Eig" + myEig) && escape($F("Eig" + myEig))  != 'null') {
				
				lcWert += "&f"+ myEig + "=" + myEig + "&v"+ myEig + "=" + escape($F("Eig" + myEig)) ;
			}
		}
		
	} else {
		lcWert = "" ;
	}
	
	new Ajax.Request("include/var_class_ajax.php?artikelid=" + nArtikelId + "&eig=" + tnEig + lcWert , {method:'get', asynchronous:false, onSuccess:storeEig});


	function storeEig (transport) {
		
		lnVarId      = 0 ;
		lcOldVal     = $F("Eig" + tnEig) ;
		llOldValInd  = 0 ;
		
		nGes         = $("Eig" + tnEig).length ;
		
		for(i=nGes ; i>=0 ; i--) {
			$("Eig" + tnEig).options[i] = null
		}
		
		if ( transport.responseText > '' ) {
			var response = eval("(" + transport.responseText + ")");
			
			for(i=0;i < response.artvars.artvar.length; i++ ) {
				
				if (response.artvars.artvar[i].eig == lcOldVal ) {
					llOldValInd = i ;
					lnVarId = response.artvars.artvar[i].id  ;
				}
			
				NeuerEintrag = new Option(response.artvars.artvar[i].eig , response.artvars.artvar[i].eig, false);			
				$("Eig" + tnEig).options[$("Eig" + tnEig).length] = NeuerEintrag ;
				
				if ( lnVarId == 0 && response.artvars.artvar[i].id > 0 ) lnVarId = response.artvars.artvar[i].id ;
			}

			$("Eig" + tnEig).selectedIndex = llOldValInd;
		}
		
		$("varid_" + nArtikelId).setAttribute("value", lnVarId, 1);

	
		if ( tnVar2 > 0 && tnLevel==1 ) {
			AddEigensch(tnVar2, tnGesamt, tnVar1, tnVar2, tnVar3, 2)
		}
		if ( tnVar3 > 0 && tnLevel==2 ) {
			AddEigensch(tnVar3, tnGesamt, tnVar1, tnVar2, tnVar3, 3)
		}
		if ( (tnLevel==1 && tnVar2==0) || (tnLevel==2 && tnVar3==0) || tnLevel==3 ) {  // Letzte Option->ggf. Preis anzeigen
		    
		    FindVar(tnGesamt, tnVar1, tnVar2, tnVar3, tnLevel);

		}
	}
}//start_show.js:

var aktPos = 1 ;
var MoveTimerID = 0 ;

function startMoveNext( tnGesamt, tnX, tcButton, tcDiv  ) {
	
	if (aktPos + 1 > tnGesamt ) {
		startMove( 1, tnGesamt, tnX, tcButton, tcDiv ) ;
	} else {
		startMove( aktPos + 1, tnGesamt, tnX, tcButton, tcDiv ) ;
	}
}

function startMovePrev( tnGesamt, tnX, tcButton, tcDiv  ) {
	
	if (aktPos - 1 < 1 ) {
		startMove( tnGesamt, tnGesamt, tnX, tcButton, tcDiv ) ;
	} else {
		startMove( aktPos - 1, tnGesamt, tnX, tcButton, tcDiv ) ;
	}
}

function startMove( tnId, tnGesamt, tnX, tcButton, tcDiv ) {
	myDuration =  Math.abs(aktPos-tnId)*0.8 ;  // Geschwindigkeit in Anhängigkeit der zu scrollenden Artikel

	for (i=1;i<=tnGesamt;i++) {
		
		if ( tnId == i ) {
			var JSONStyle = { "style" : "color:#fff;background-color:#aa0000;",
				"duration"  : myDuration};
		} else {
			var JSONStyle = { "style" : "color:#000;background-color:#ddd;",
				"duration"  : myDuration};
		}
		new Effect.Morph (tcButton + i, JSONStyle ) ;
	}
	myleft     = (tnId-1) * -tnX ;
	

	var JSONStyle = { "style" : "left:" + myleft + "px",
                    "duration"  : myDuration};

	new Effect.Morph(tcDiv , JSONStyle  ) ;
	
	aktPos = tnId ;
}


function AutoMove() {
    
    if ( typeof(lnStartCnt)  == 'undefined') {
	return ;
	}
    
    if ( aktPos == lnStartCnt) {
	startMove(1 ,lnStartCnt ,620, 'butt_', 'scroller') ;
    } else {
	startMove(aktPos +1 ,lnStartCnt ,620, 'butt_', 'scroller') ;
    }
    
}

function stopTimer() {
    if (MoveTimerID>0) {
        window.clearInterval(MoveTimerID);
        MoveTimerID = window.setInterval("startTimer()",20000);
    }
}

function startTimer() {
    if (MoveTimerID>0) {
        window.clearInterval(MoveTimerID);
    }
    MoveTimerID = window.setInterval("AutoMove()",6000);    
}

if (window.addEventListener)
	 window.addEventListener("load", startTimer, false); ;//flvplayer/swfobject.js:

/* SWFObject v2.1 <http://code.google.com/p/swfobject/>
	Copyright (c) 2007-2008 Geoff Stearns, Michael Williams, and Bobby van der Sluis
	This software is released under the MIT License <http://www.opensource.org/licenses/mit-license.php>
*/
var swfobject=function(){var b="undefined",Q="object",n="Shockwave Flash",p="ShockwaveFlash.ShockwaveFlash",P="application/x-shockwave-flash",m="SWFObjectExprInst",j=window,K=document,T=navigator,o=[],N=[],i=[],d=[],J,Z=null,M=null,l=null,e=false,A=false;var h=function(){var v=typeof K.getElementById!=b&&typeof K.getElementsByTagName!=b&&typeof K.createElement!=b,AC=[0,0,0],x=null;if(typeof T.plugins!=b&&typeof T.plugins[n]==Q){x=T.plugins[n].description;if(x&&!(typeof T.mimeTypes!=b&&T.mimeTypes[P]&&!T.mimeTypes[P].enabledPlugin)){x=x.replace(/^.*\s+(\S+\s+\S+$)/,"$1");AC[0]=parseInt(x.replace(/^(.*)\..*$/,"$1"),10);AC[1]=parseInt(x.replace(/^.*\.(.*)\s.*$/,"$1"),10);AC[2]=/r/.test(x)?parseInt(x.replace(/^.*r(.*)$/,"$1"),10):0}}else{if(typeof j.ActiveXObject!=b){var y=null,AB=false;try{y=new ActiveXObject(p+".7")}catch(t){try{y=new ActiveXObject(p+".6");AC=[6,0,21];y.AllowScriptAccess="always"}catch(t){if(AC[0]==6){AB=true}}if(!AB){try{y=new ActiveXObject(p)}catch(t){}}}if(!AB&&y){try{x=y.GetVariable("$version");if(x){x=x.split(" ")[1].split(",");AC=[parseInt(x[0],10),parseInt(x[1],10),parseInt(x[2],10)]}}catch(t){}}}}var AD=T.userAgent.toLowerCase(),r=T.platform.toLowerCase(),AA=/webkit/.test(AD)?parseFloat(AD.replace(/^.*webkit\/(\d+(\.\d+)?).*$/,"$1")):false,q=false,z=r?/win/.test(r):/win/.test(AD),w=r?/mac/.test(r):/mac/.test(AD);/*@cc_on q=true;@if(@_win32)z=true;@elif(@_mac)w=true;@end@*/return{w3cdom:v,pv:AC,webkit:AA,ie:q,win:z,mac:w}}();var L=function(){if(!h.w3cdom){return }f(H);if(h.ie&&h.win){try{K.write("<script id=__ie_ondomload defer=true src=//:><\/script>");J=C("__ie_ondomload");if(J){I(J,"onreadystatechange",S)}}catch(q){}}if(h.webkit&&typeof K.readyState!=b){Z=setInterval(function(){if(/loaded|complete/.test(K.readyState)){E()}},10)}if(typeof K.addEventListener!=b){K.addEventListener("DOMContentLoaded",E,null)}R(E)}();function S(){if(J.readyState=="complete"){J.parentNode.removeChild(J);E()}}function E(){if(e){return }if(h.ie&&h.win){var v=a("span");try{var u=K.getElementsByTagName("body")[0].appendChild(v);u.parentNode.removeChild(u)}catch(w){return }}e=true;if(Z){clearInterval(Z);Z=null}var q=o.length;for(var r=0;r<q;r++){o[r]()}}function f(q){if(e){q()}else{o[o.length]=q}}function R(r){if(typeof j.addEventListener!=b){j.addEventListener("load",r,false)}else{if(typeof K.addEventListener!=b){K.addEventListener("load",r,false)}else{if(typeof j.attachEvent!=b){I(j,"onload",r)}else{if(typeof j.onload=="function"){var q=j.onload;j.onload=function(){q();r()}}else{j.onload=r}}}}}function H(){var t=N.length;for(var q=0;q<t;q++){var u=N[q].id;if(h.pv[0]>0){var r=C(u);if(r){N[q].width=r.getAttribute("width")?r.getAttribute("width"):"0";N[q].height=r.getAttribute("height")?r.getAttribute("height"):"0";if(c(N[q].swfVersion)){if(h.webkit&&h.webkit<312){Y(r)}W(u,true)}else{if(N[q].expressInstall&&!A&&c("6.0.65")&&(h.win||h.mac)){k(N[q])}else{O(r)}}}}else{W(u,true)}}}function Y(t){var q=t.getElementsByTagName(Q)[0];if(q){var w=a("embed"),y=q.attributes;if(y){var v=y.length;for(var u=0;u<v;u++){if(y[u].nodeName=="DATA"){w.setAttribute("src",y[u].nodeValue)}else{w.setAttribute(y[u].nodeName,y[u].nodeValue)}}}var x=q.childNodes;if(x){var z=x.length;for(var r=0;r<z;r++){if(x[r].nodeType==1&&x[r].nodeName=="PARAM"){w.setAttribute(x[r].getAttribute("name"),x[r].getAttribute("value"))}}}t.parentNode.replaceChild(w,t)}}function k(w){A=true;var u=C(w.id);if(u){if(w.altContentId){var y=C(w.altContentId);if(y){M=y;l=w.altContentId}}else{M=G(u)}if(!(/%$/.test(w.width))&&parseInt(w.width,10)<310){w.width="310"}if(!(/%$/.test(w.height))&&parseInt(w.height,10)<137){w.height="137"}K.title=K.title.slice(0,47)+" - Flash Player Installation";var z=h.ie&&h.win?"ActiveX":"PlugIn",q=K.title,r="MMredirectURL="+j.location+"&MMplayerType="+z+"&MMdoctitle="+q,x=w.id;if(h.ie&&h.win&&u.readyState!=4){var t=a("div");x+="SWFObjectNew";t.setAttribute("id",x);u.parentNode.insertBefore(t,u);u.style.display="none";var v=function(){u.parentNode.removeChild(u)};I(j,"onload",v)}U({data:w.expressInstall,id:m,width:w.width,height:w.height},{flashvars:r},x)}}function O(t){if(h.ie&&h.win&&t.readyState!=4){var r=a("div");t.parentNode.insertBefore(r,t);r.parentNode.replaceChild(G(t),r);t.style.display="none";var q=function(){t.parentNode.removeChild(t)};I(j,"onload",q)}else{t.parentNode.replaceChild(G(t),t)}}function G(v){var u=a("div");if(h.win&&h.ie){u.innerHTML=v.innerHTML}else{var r=v.getElementsByTagName(Q)[0];if(r){var w=r.childNodes;if(w){var q=w.length;for(var t=0;t<q;t++){if(!(w[t].nodeType==1&&w[t].nodeName=="PARAM")&&!(w[t].nodeType==8)){u.appendChild(w[t].cloneNode(true))}}}}}return u}function U(AG,AE,t){var q,v=C(t);if(v){if(typeof AG.id==b){AG.id=t}if(h.ie&&h.win){var AF="";for(var AB in AG){if(AG[AB]!=Object.prototype[AB]){if(AB.toLowerCase()=="data"){AE.movie=AG[AB]}else{if(AB.toLowerCase()=="styleclass"){AF+=' class="'+AG[AB]+'"'}else{if(AB.toLowerCase()!="classid"){AF+=" "+AB+'="'+AG[AB]+'"'}}}}}var AD="";for(var AA in AE){if(AE[AA]!=Object.prototype[AA]){AD+='<param name="'+AA+'" value="'+AE[AA]+'" />'}}v.outerHTML='<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000"'+AF+">"+AD+"</object>";i[i.length]=AG.id;q=C(AG.id)}else{if(h.webkit&&h.webkit<312){var AC=a("embed");AC.setAttribute("type",P);for(var z in AG){if(AG[z]!=Object.prototype[z]){if(z.toLowerCase()=="data"){AC.setAttribute("src",AG[z])}else{if(z.toLowerCase()=="styleclass"){AC.setAttribute("class",AG[z])}else{if(z.toLowerCase()!="classid"){AC.setAttribute(z,AG[z])}}}}}for(var y in AE){if(AE[y]!=Object.prototype[y]){if(y.toLowerCase()!="movie"){AC.setAttribute(y,AE[y])}}}v.parentNode.replaceChild(AC,v);q=AC}else{var u=a(Q);u.setAttribute("type",P);for(var x in AG){if(AG[x]!=Object.prototype[x]){if(x.toLowerCase()=="styleclass"){u.setAttribute("class",AG[x])}else{if(x.toLowerCase()!="classid"){u.setAttribute(x,AG[x])}}}}for(var w in AE){if(AE[w]!=Object.prototype[w]&&w.toLowerCase()!="movie"){F(u,w,AE[w])}}v.parentNode.replaceChild(u,v);q=u}}}return q}function F(t,q,r){var u=a("param");u.setAttribute("name",q);u.setAttribute("value",r);t.appendChild(u)}function X(r){var q=C(r);if(q&&(q.nodeName=="OBJECT"||q.nodeName=="EMBED")){if(h.ie&&h.win){if(q.readyState==4){B(r)}else{j.attachEvent("onload",function(){B(r)})}}else{q.parentNode.removeChild(q)}}}function B(t){var r=C(t);if(r){for(var q in r){if(typeof r[q]=="function"){r[q]=null}}r.parentNode.removeChild(r)}}function C(t){var q=null;try{q=K.getElementById(t)}catch(r){}return q}function a(q){return K.createElement(q)}function I(t,q,r){t.attachEvent(q,r);d[d.length]=[t,q,r]}function c(t){var r=h.pv,q=t.split(".");q[0]=parseInt(q[0],10);q[1]=parseInt(q[1],10)||0;q[2]=parseInt(q[2],10)||0;return(r[0]>q[0]||(r[0]==q[0]&&r[1]>q[1])||(r[0]==q[0]&&r[1]==q[1]&&r[2]>=q[2]))?true:false}function V(v,r){if(h.ie&&h.mac){return }var u=K.getElementsByTagName("head")[0],t=a("style");t.setAttribute("type","text/css");t.setAttribute("media","screen");if(!(h.ie&&h.win)&&typeof K.createTextNode!=b){t.appendChild(K.createTextNode(v+" {"+r+"}"))}u.appendChild(t);if(h.ie&&h.win&&typeof K.styleSheets!=b&&K.styleSheets.length>0){var q=K.styleSheets[K.styleSheets.length-1];if(typeof q.addRule==Q){q.addRule(v,r)}}}function W(t,q){var r=q?"visible":"hidden";if(e&&C(t)){C(t).style.visibility=r}else{V("#"+t,"visibility:"+r)}}function g(s){var r=/[\\\"<>\.;]/;var q=r.exec(s)!=null;return q?encodeURIComponent(s):s}var D=function(){if(h.ie&&h.win){window.attachEvent("onunload",function(){var w=d.length;for(var v=0;v<w;v++){d[v][0].detachEvent(d[v][1],d[v][2])}var t=i.length;for(var u=0;u<t;u++){X(i[u])}for(var r in h){h[r]=null}h=null;for(var q in swfobject){swfobject[q]=null}swfobject=null})}}();return{registerObject:function(u,q,t){if(!h.w3cdom||!u||!q){return }var r={};r.id=u;r.swfVersion=q;r.expressInstall=t?t:false;N[N.length]=r;W(u,false)},getObjectById:function(v){var q=null;if(h.w3cdom){var t=C(v);if(t){var u=t.getElementsByTagName(Q)[0];if(!u||(u&&typeof t.SetVariable!=b)){q=t}else{if(typeof u.SetVariable!=b){q=u}}}}return q},embedSWF:function(x,AE,AB,AD,q,w,r,z,AC){if(!h.w3cdom||!x||!AE||!AB||!AD||!q){return }AB+="";AD+="";if(c(q)){W(AE,false);var AA={};if(AC&&typeof AC===Q){for(var v in AC){if(AC[v]!=Object.prototype[v]){AA[v]=AC[v]}}}AA.data=x;AA.width=AB;AA.height=AD;var y={};if(z&&typeof z===Q){for(var u in z){if(z[u]!=Object.prototype[u]){y[u]=z[u]}}}if(r&&typeof r===Q){for(var t in r){if(r[t]!=Object.prototype[t]){if(typeof y.flashvars!=b){y.flashvars+="&"+t+"="+r[t]}else{y.flashvars=t+"="+r[t]}}}}f(function(){U(AA,y,AE);if(AA.id==AE){W(AE,true)}})}else{if(w&&!A&&c("6.0.65")&&(h.win||h.mac)){A=true;W(AE,false);f(function(){var AF={};AF.id=AF.altContentId=AE;AF.width=AB;AF.height=AD;AF.expressInstall=w;k(AF)})}}},getFlashPlayerVersion:function(){return{major:h.pv[0],minor:h.pv[1],release:h.pv[2]}},hasFlashPlayerVersion:c,createSWF:function(t,r,q){if(h.w3cdom){return U(t,r,q)}else{return undefined}},removeSWF:function(q){if(h.w3cdom){X(q)}},createCSS:function(r,q){if(h.w3cdom){V(r,q)}},addDomLoadEvent:f,addLoadEvent:R,getQueryParamValue:function(v){var u=K.location.search||K.location.hash;if(v==null){return g(u)}if(u){var t=u.substring(1).split("&");for(var r=0;r<t.length;r++){if(t[r].substring(0,t[r].indexOf("="))==v){return g(t[r].substring((t[r].indexOf("=")+1)))}}}return""},expressInstallCallback:function(){if(A&&M){var q=C(m);if(q){q.parentNode.replaceChild(M,q);if(l){W(l,true);if(h.ie&&h.win){M.style.display="block"}}M=null;l=null;A=false}}}}}();