$(document).ready(function() {
    menuHoverAcrions();
});

function menuHoverAcrions() {
    $(".menuitem").each(function() {
        var simple_img = $(this).children(".menuimg");
        var hover_img = $(this).children(".menuimg_hover"); 
        hover_img.hide();
        $(this).hover(
            function() {
                hover_img.show();
                simple_img.hide();
            },
            function() {
                hover_img.hide();
                simple_img.show();
            }
            );
    }) 
}



