 	////////////

$(document).ready(function(){
						   
						   $.ajaxSetup ({
    // Disable caching of AJAX responses */
    cache: false
});
   $(".menu a").each(function(){
      var href = $(this).attr("href");
	  
      $(this).attr({ href: "#"});
      $(this).click(function(){
         $("#targetDiv").load(href);
      });
   });
   
   $("#targetDiv").load('../glosario/glosario.php');
   
    $("a[rel^='lightbox']").slimbox({/* Put custom options here */}, null, function(el) { 
                return (this == el) || ((this.rel.length > 8) && (this.rel == el.rel)); 
        }); 
}); 





 
////////


