//for chez-sugi


var mimetexCGI = '/mimetex.cgi';

$(document).ready(function() { 
  $(".asset-body").footnotes({contentBlock : ""});
  $(".mimetex").each(function (i){
    var alt = $(this).attr("alt");
    $(this).attr("src", mimetexCGI + "?" + alt);
    $(this).attr("title", alt);
    this.style.backgroundColor = "#ffffff"; 
  });
  $(".maplink").click(function (){
    var href = $(this).attr("href"); 
    var win = window.open(href,
                          'map',
                          'width=800,height=600,scrollbars=yes,status=yes,resizable=yes');
    win.focus();
    return false;
  });
});
