// When the document loads do everything inside here ...
$(document).ready(function()
{
  $('a.load').click( function() 
  { 
    // Hide current current and figure out the new content
//  $(".Review").slideUp("fast");
    var href_array= $(this).attr('href').split("/");
    var content_show = "/load/" + href_array[href_array.length-1];
	
    // Pull the content in via AJAX
    $.ajax(
    {
      method:     "load",url: content_show,
      beforeSend: function()      {$("#loading").show();},
      complete:   function()      {$("#loading").hide();},
	  error: 	  function(r,e)   { alert("Failure: " + e + " --> " + r); }, 
      success:    function(html)  {$(".Review").show("slow"); $(".Review").html(html);}
    });//close .ajax
			  
    // Browser doesn't need to finish the request
    return false;  
  }); //close .click
}); //close .ready

