$(document).ready(function() {
    $('.rollover').hover(function(){ 
        orig = $(this).attr('src'); 
        $(this).attr('src', $(this).attr('rel'))},function(){ 
            $(this).attr('src', orig) 
        }); 
});