$(document).ready(function(){
$(function(){
    $("#tabs img").hover(function() {
        $(this).attr("src", $(this).attr("src").split(".jpg").join("_hover.jpg"));
    }, function() {
        $(this).attr("src", $(this).attr("src").split("_hover.jpg").join(".jpg"));
    });
    $('#tabs img').click(function(){
        $('div.navItem').hide();
        $('#nav_'+$(this).attr('id')).show();
    });
});
});
