var ContextCalendar=Class.create({_cal:undefined,initialize:function(C,A){this._cal=new YAHOO.widget.Calendar("cal",C,{LOCALE_WEEKDAYS:"short",MULTI_SELECT:false});var B="dd.MM.yyyy";if(B=="dd.MM.yyyy"){this._cal.cfg.setProperty("DATE_FIELD_DELIMITER",".");this._cal.cfg.setProperty("MDY_DAY_POSITION",1);this._cal.cfg.setProperty("MDY_MONTH_POSITION",2);this._cal.cfg.setProperty("MDY_YEAR_POSITION",3);this._cal.cfg.setProperty("MD_DAY_POSITION",1);this._cal.cfg.setProperty("MD_MONTH_POSITION",2);if(A=="de"){this._cal.cfg.setProperty("MONTHS_SHORT",["Jan","Feb","M\u00E4r","Apr","Mai","Jun","Jul","Aug","Sep","Okt","Nov","Dez"]);this._cal.cfg.setProperty("MONTHS_LONG",["Januar","Februar","M\u00E4rz","April","Mai","Juni","Juli","August","September","Oktober","November","Dezember"]);this._cal.cfg.setProperty("WEEKDAYS_1CHAR",["S","M","D","M","D","F","S"]);this._cal.cfg.setProperty("WEEKDAYS_SHORT",["So","Mo","Di","Mi","Do","Fr","Sa"]);this._cal.cfg.setProperty("WEEKDAYS_MEDIUM",["Son","Mon","Die","Mit","Don","Fre","Sam"]);this._cal.cfg.setProperty("WEEKDAYS_LONG",["Sonntag","Montag","Dienstag","Mittwoch","Donnerstag","Freitag","Samstag"]);this._cal.cfg.setProperty("START_WEEKDAY",1)}}this._cal.selectEvent.subscribe(this._eventHandleSelect,this._cal,true);this._cal.render()},getDate:function(D,A,E){var C=A[0];var B=this.toDate(C[0]);var F=function(J,L){var G=L.cfg.getProperty("WEEKDAYS_LONG")[J.getDay()];var H=J.getDate();var K=L.cfg.getProperty("MONTHS_LONG")[J.getMonth()];var I=J.getFullYear();return(G+", "+H+" "+K+" "+I)};window.location="/events/list?atdaysearch=true&from="+F(B,this)},_eventHandleSelect:function(H,G,D){var A=G[0];var C=A[0];var I=C[0],E=C[1],J=C[2];var F=J+"."+E+"."+I;var B=$("visit_date_chooser_loading");if(B!=undefined){B.toggle()}window.location="/events/list?from="+F+"&to="+F}});