
function psalms_init() {
    // Rollover for Mike Breal's Blog
    $('#mike-breal-blog > a').mouseover(function() {
        $(this).children('img').attr('src', '/media/images/mike_breal_blog_f2.gif');
    }).mouseout(function() {
        $(this).children('img').attr('src', '/media/images/mike_breal_blog.gif');
    });

    // Return to parent rollover.
    $('#return-to-parent > a').mouseover(function() {
        $(this).children('img').attr('src', '/media/images/return_to_parent_site_hover.gif');
    }).mouseout(function() {
        $(this).children('img').attr('src', '/media/images/return_to_parent_site.gif');
    });

    // Chabanel Psalms main index rollover
    $('#return-to-chabanel > a').mouseover(function() {
        $(this).children('img').attr('src', "/media/images/free_responsorial_psalms_organ_PDF_voice_r2_c2_f2.gif");
    }).mouseout(function() {
        $(this).children('img').attr('src', "/media/images/free_responsorial_psalms_organ_PDF_voice_r2_c2.gif");
    });

    // Watershed rollover
    $('#watershed-link').mouseover(function () {
        $(this).children('img').attr('src', "/media/images/12_watershed_down.png");
    }).mouseout(function () {
        $(this).children('img').attr('src', "/media/images/11_watershed_up.png");
    });

    // Chabanel index rollover
    $('#chabanel-link').mouseover(function () {
        $(this).children('img').attr('src', "/media/images/15_CHABANEL_DOWN.png");
    }).mouseout(function () {
        $(this).children('img').attr('src', "/media/images/14_CHABANEL_UP.png");
    });
}
