$(document).ready(function(){
    $("#top-mainimg .navi li").hover(
        function() {
            $(this).fadeTo(200, 0.5); 
        }, 
        function() {
            $(this).fadeTo(200, 1); 
        }
    );
    
    $(".navi ul li").hover(function() {
        var target = $(this).attr('id');
        
        $('.navi-image a').each(function() {
            if ($(this).attr('class') == target) {
                $(this).fadeIn('slow');
            } else {
                $(this).fadeOut('fast');
            }
        });
    }, 
    function() {
        return false;
    });
});


