$(function() {
            $("#ustmenu a").hover(function() {
                $(this).stop().animate({
                    "opacity": "0.5"
                }, 600);
            }, function() {
                $(this).animate({
                    "opacity": "1"
                }, 400);
            });
            
            $("#solmenu_icerik a").hover(function() {
                $(this).stop().animate({
                    "opacity": "0.3"
                }, 800);
            }, function() {
                $(this).animate({
                    "opacity": "1"
                }, 400);
            });

            $("#solmenu_icerik1 a").hover(function() {
                $(this).stop().animate({
                    "opacity": "0.3"
                }, 800);
            }, function() {
                $(this).animate({
                    "opacity": "1"
                }, 400);
            });

            $("#solmenu_icerik2 a").hover(function() {
                $(this).stop().animate({
                    "opacity": "0.3"
                }, 800);
            }, function() {
                $(this).animate({
                    "opacity": "1"
                }, 400);
            });

        });