function handleNotes() {
   $(".notes-button span").each(function() {
       if( parseInt($(this).attr("rel")) > 14 )
           $(this).parent().addClass("fave");
   });
   $(".notes-button").click(function(event) {
       event.preventDefault();
       var node = $("#notes-"+$(this).attr("rel"));
       $("#notes-"+$(this).attr("rel")).slideToggle();
       $.ajax({ url: $(this).attr("href")+"&jsonp=1&noimages=1", dataType: "jsonp", success: function(data){
           node.find(".loading").hide();
           node.find(".notes-loader").html(data).find("ol.notes li:last").append("</span>").end().slideDown();
           node.find(".notes-loader").append("<p><a href='#' class='notes-hide'>Hide Notes</a></p>");
           node.find(".notes-hide").click(function(event) {
               event.preventDefault();
               node.slideToggle();
           });
       } });
   });
}