window.onload=function(){
	/* setup draggables */
	var draggables = $S('.drag');
	draggables.each(function(el){
	
		// make the box draggable using this handle
		el.makeDraggable({
			handle: el.getElementsBySelector('.handle')[0]
		});		
	});	
}
