$(document).ready(function(){
    $("#nav a img").hover(
        function(){
            $(this).attr('src', 'img/' + $(this).attr('id') + '-ovr.jpg' );
        },
        function(){
            $(this).attr('src', 'img/' + $(this).attr('id') + '.jpg' );
        }
    );
});
