// This sets the displayed percentage based on the class assigned to #progressbar

 $(document).ready(function() {
		if ($("#progressbar").is(".zero")) {
			$("#percentage").html("0%");
		}
		if ($("#progressbar").is(".ten")) {
			$("#percentage").html("10%");
		}
		if ($("#progressbar").is(".twenty")) {
			$("#percentage").html("20%");
		}
		if ($("#progressbar").is(".thirty")) {
			$("#percentage").html("30%");
		}
		if ($("#progressbar").is(".forty")) {
			$("#percentage").html("40%");
		}
		if ($("#progressbar").is(".fifty")) {
			$("#percentage").html("50%");
		}
		if ($("#progressbar").is(".sixty")) {
			$("#percentage").html("60%");
		}
		if ($("#progressbar").is(".seventy")) {
			$("#percentage").html("70%");
		}
		if ($("#progressbar").is(".eighty")) {
			$("#percentage").html("80%");
		}
		if ($("#progressbar").is(".ninety")) {
			$("#percentage").html("90%");
		}
		if ($("#progressbar").is(".hundred")) {
			$("#percentage").html("100%");
		}
	})
