$(document).ready(function(){			   
$("#content").load("content/home.html");
   
   $("#nav a").each(function(){
      var href = $(this).attr("href");
      $(this).attr({ href: "#"});
      $(this).click(function(){
         $("#content").load(href);
      });
   });
});
