dojo.require("westley.dijit.utils.ModalReveal");dojo.require("dojo.fx.easing");function revealModal(a){var b=new ZURB.Reveal({modalId:a.id.replace(/\d+$/,"")+"Modal",animation:"fade"});b.openModal();return false}dojo.addOnLoad(function(){dojo.query("a.open-modal").onclick(function(){revealModal(this)});dojo.forEach(dojo.query(".open-modal-button"),function(a){dojo.connect(dijit.getEnclosingWidget(a),"onClick",function(){revealModal(this)})})});dojo.addOnLoad(function(){var a=dojo.byId("messages");if(a){dojo.animateProperty({node:a,properties:{opacity:0.95,top:0},duration:800,easing:dojo.fx.easing.bounceOut,delay:400,onEnd:function(){setTimeout(function(){hideMessages()},5000)}}).play()}});function hideMessages(){dojo.style(dojo.byId("messages"),"display","none")};
