jQuery(function($) {
  $('.fadlink').click(function(e) {
    e.preventDefault();
    $("#main").load($(this).attr('href'));
  });
});

$().ajaxSend(function(r,s){
  $("#loading").show();
});

$().ajaxStop(function(r,s){
  $("#loading").fadeOut("fast");
});
