$(function(){
    $('.spinner').mouseover(function() {
        $(this).attr('src', $(this).attr('hover')+Math.random());
    });
});

