/**
 * @author Kris
 */
YUI().use("node","event","json-parse","io",function(a){a.all(".hopetoun_calendar").each(function(d,b,f){var e=d.getAttribute("id"),c=e.replace(/calendar_/,""),h,g;h={timeout:4000,on:{success:function(i,m){try{var k=a.JSON.parse(m.responseText)}catch(l){d.set("innerHTML","<strong>Calendar information currently unavailable</strong>");return}if(k.message!="success"){d.set("innerHTML","<strong>Calendar information currently unavailable</strong>");return}d.set("innerHTML","");g=new YAHOO.widget.CalendarGroup(e,{pages:1,MULTI_SELECT:true,selected:k.property.booking_dates,mindate:new Date()});function j(o,n){g.cfg.resetProperty("selected");g.cfg.fireQueue();g.render();return false}g.selectEvent.subscribe(j);g.deselectEvent.subscribe(j);g.render()},failure:function(i,j){d.set("innerHTML","<strong>Unable to retrieve calendar information</strong>")}}};a.io("/resources/add-ons/json/getCalendarInfo.php?id="+c,h)})});
