
function rand(min,max){return Math.floor(Math.random()*(max-min+1)+min);}
window.addEvent('domready',function(){$$('#shuffle a').addEvent('click',function(e){e=new Event(e);$$('#cloud a').each(function(el){el.style.top=rand(-30,160)+'px';el.style.left=rand(0,700)+'px';});e.stop();});$$('#cloud a').each(function(drag){drag.onmouseover=function(){drag.style.zIndex++;};drag.onmouseout=function(){drag.style.zIndex--;};new Drag.Move(drag,{onStart:function(){this.clickonly=true;this.element.style.zIndex++;},onDrag:function(){this.clickonly=false;},onComplete:function(){this.element.style.zIndex--;}});});});