$(document).ready(function(){
  $("#nav a").each(function(){
    var href = $(this).attr("href");
	var location = href.split('.',[1]);
    $(this).click(function(){
      $("#nav a").removeClass('active');
      $(this).addClass('active');
	  $("#content").fadeOut("slow",function(){
        $("#content").hide().load(href).fadeIn("slow"); //Le damos efecto 
      });
      $(this).attr({ href: "#/" + location});
    });
  });
});