$(document).ready(
    function()
    {
        $("[rollover]").hover(
            function()
            {
                $(this).attr("orig_src", $(this).attr("src"));
                $(this).attr("src", $(this).attr("rollover"));
            },
            function()
            {
                $(this).attr("src", $(this).attr("orig_src"));
            }
        )
    }
);

