

$(document).ready(function(){
	//Convert every submit button into "please wait" & disable upon double clicking
	/*
	$("input:submit").click(function() {
		if ($(this).val() == 'Please wait'){
			$(this).attr("disabled", "disabled");
		}
		else {$(this).val('Please wait')};
	});
	*/
	
	//Page indicator highlights current link
	f = window.location.href.split("#")[0];
	f = f.substr(f.lastIndexOf("/") + 1, f.length);	
	$(".navtable a[href='" + f + "']").addClass("menuOn"); // Highlight Current Link
});

