$(document).ready(function( ){
    $('#alt-nav > div > ul > li > a > img').bind('mouseover',function(e){
        $(this).attr('src',$(this).attr('src').replace('_off','_on'));
        });
    $('#alt-nav > div > ul > li > a > img').bind('mouseout',function(e){
        $(this).attr('src',$(this).attr('src').replace('_on','_off'));
        });
    });