$(document).ready(function() {
			
	$(".Content").click(function() {
		var app = '<center><Br><br><br><img src="/Content/Images/loading.gif" alt="" /><h2>Loading, Please wait...</h2></center>';
		$("#Content").empty();
		$("#Content").append(app);
				
		$("#LoadComplete").fadeOut("fast", function() {
			$("#Content").fadeIn("fast");
		});
	});

});
