jQuery(document).ready(function(){
	$("#gray-cal span").each(function(){
		$(this).css('position','absolute').css('left',Math.random()*($(window).width()-$(this).width())).css('top',Math.random()*($(window).height()-100));
		$(this).draggable();
	});
});