$(document).ready(function(){

    $('#logo').hover(function () {
        this.src = 'img/small-blue-logo-hover.jpg';
    }, function () {
        this.src = 'img/small-blue-logo.jpg';

    });

});

