/* allows the timelines to be dragged and dropped */
$(function()  {
	$("#timeline_display").sortable({
		handle:'.icon',      // timelines can only be dragged by the left image
		stop: function(event, ui)  {
			orientSpans();
		}
	});
	$("#timeline_display").disableSelection();   // does not allow the user to select text inside the timeline
});
