$(document).ready(
    function() {
        // init rollover
        $(".rolly").each(function(e){
            title = $(this).attr("title");
            $(this).attr("src", title + ".png");
        }).mouseover(function(e){
            title = $(this).attr("title");
            $(this).attr("src", title + "_on.png");
        }).mouseout(function(e){
            title = $(this).attr("title");
            $(this).attr("src", title + ".png");
        });
    }
);
