﻿
$(document).ready(function() {
    $(".menu").hover(function() {
        $(this).fadeTo("fast",0.4);
        },
        function() {
        $(this).fadeTo("fast",1);
    });
});

$(document).ready(function() {
       $(".menu2").hover(function() {
       $(this).fadeTo(300, 0.4);
       },
       function() {
       $(this).fadeTo("fast", 1);
   });
    });


    $(document).ready(function() {
        $(".newshover").hover(function() {
                $(this).css("background-color", "#e2e3e4");
          
        },
            function() {
                $(this).css("background-color", "white");
            });
    });  
