﻿
$(document).ready(function() {
$('#contentLoading').hide();
});


	function getcontent(content){
	 var content = content;

	  $('#contentLoading').show();
      $.post("../content-ajax.php", {
        content: (content)
      }, function(response){
        
        $('#contentResult').fadeOut();
        setTimeout("finishAjax('contentResult', '"+escape(response)+"')", 100);
      });
    	return false;
	}




function finishAjax(id, response) {
  $('#contentLoading').hide();
  $('#'+id).html(unescape(response));
  $('#'+id).fadeIn();
} //finishAjax
