 $(document).ready(function(){
  $("#header").load("../cartit/header.php");
  $("#left").load("../cartit/left.php");
  $("#right").load("../cartit/right.php");
  $("#footer").load("../cartit/footer.php", '', displayContent);
  
 });
 
function displayContent(responseText, textStatus, XMLHttpRequest) {
  $("#cartitContent").css("display","inline");
}
