var FCKTemplatePath = '/Plugins/SusanDonovan/fckTemplates.xml';

$$.extend({
  Home : {
    Ready : function()
    {
      $('div#SusanDonovanBookshelf img').hover(
        function() {
          $(this).attr('src', $(this).attr('src').replace(/\_(\d*)/, ' Over_$1'));
        },
        function() {
          $(this).attr('src', $(this).attr('src').replace(/ Over\_(\d*)/, '_$1'));
        }
      );
    }
  }
});

$(document).ready(
  function() {
    $$.Home.Ready();
  }
);