init
function init() {
$(".draggable").each(function(x) {
var id = this.attr('id');
var no = this.attr('no');
var x = parseInt(this.css('left'));
var y = parseInt(this.css('top'));
var text = this.html();
// alert(id + " " + no + " " + x + "/" + y + " " + text );
});
//}
//
}