$(function() {
	// widget init
	$("#progressbar").progressbar({
		change: function(e, ui) {
			var $this = $(this), val = $this.progressbar('option', 'value');
			$this.find('#progressvalue').html(val+'%');
		}
	});
});
