﻿function menuHover() {
    $('.menu a:not(.selected)').hover(
    function() {
        $(this).find('img').attr('src', $(this).find('img').attr('src').replace('.png', '_hover.png'));
    },
    function() {
        $(this).find('img').attr('src', $(this).find('img').attr('src').replace('_hover.png', '.png'));
    }
    );
}

$(document).ready(function() {
    menuHover();
});
