$(document).ready(function(){
						   $('#content').fadeTo("slow", 1);
						   $('#content').load('applications.php');
						   $('.loading').hide();
						   $('#header a').click(function() {
														 $("#header a").css("color","black");
														 $(this).css("color","white");
														 $("#content").fadeTo("slow",.25);
														 var content_show = $(this).attr("title");
														 $.ajax({
															  method: "get",
															  url: "applications.php",
															  data: "page="+content_show,
															  beforeSend: function(){
																  $(".titleDefault").hide();
																  $(".loading").fadeIn("slow");
																  },
															  complete: function(){
																  $(".loading").hide();
																  $(".titleDefault").fadeIn("slow");
																  },
															  success: function(html){
																  $("#content").fadeTo("slow", 1);
																  $("#content").html(html);
																  }
																  });
													   });
						   
						   });



