  $(document).ready(function(){
    var loadHtml = "<p align='center' style='margin-top: 150px;'><b>Loading result ...</b><br /><img src='/global/js/images/activity.gif' /></p>";
    $(".loadcontent").click(function() {
        var urlLink = $(this).attr("href"); 
        $("#tabcontent").html(loadHtml);
        $.post(urlLink, { }, function(data) {
            display = data.split("<!-- Content Cut -->");
            $('#tabcontent').html(display[1]);
          });
        return false;
      });
  });