// Modify line 9. Replace 'value: 40' with 'value: xx' where xx = the percentage of your project which is complete. e.g. if you are half way to launch, line 9 should read 'value: 50'
// Also, modify line line 17 to replace '40%' with your percentage.

$(function(){

// Progressbar
$("#ProgressBar").progressbar({

value: 80

});
			});

$(function(){

// Progressbar
$(".ui-progressbar-value").append('<span class="percentage">80%</span>')

});
			
