$(document).ready(function() {
    $('#hdr_image').hover(function() {
        $(this).attr('src', 'images/logo_name_hover.jpg');
    }, function() {
        $(this).attr('src', 'images/logo_name.jpg');
    });
});