$(document).ready(function(){
    $('.menuitem').fadeTo("fast", 0.3);
    $('.menuitem').hover(function(){
        $(this).fadeTo("normal", 1.0);
        },function(){
            $(this).fadeTo("slow", 0.3);
            });
            });