// JavaScript Document
	window.addEvent('domready', function(){
				
			$$('#draggables div').each(function(drag){
				new Drag.Move(drag);			
			});	
			
			$$('#draggables span a').each(function(o){
				$(o).addEvents({'click' : function(event){ 
				$(o.id+'_w').setStyle('display', 'none');
				}		  		  
   		   	})			
		   });	
		   
		   $$('#buttons a').each(function(o){
				$(o).addEvents({'click' : function(event){ 
				$(o.id+'_w').setStyle('display', 'block');}		  		  
   		   	})			
		   });	
	}); 