LibManager.require("Scheduler");
var jumpToResort={theSel:null,init:function(){
this.theSel=$("jumpToRegion")["atopResort"];
this.theSel.style.display="inline";
Event.observe(this.theSel,"change",this.jump.bindAsEventListener(this));
},jump:function(){
window.location=this.theSel.options[this.theSel.selectedIndex].value;
}};
LibManager.isLoaded(["Scheduler"],function(){
Scheduler.schedule("atopResort","jumpToResort.init()");
});

