jQuery(document).ready(function() {
    $(".drop").hide();
    $(".link").hover(function() {
    $(this).children(".drop").fadeIn();
    $("#ctl00_Quotes, .text").fadeTo('normal', 0.1);
        if ($(this).is("#fs")) {            
            $(".bg").animate({ backgroundColor: "#2662ab" });
            $(this).addClass("hover");
            $("#cs, #al, #me, #dp, #re, #un").removeClass("hover");
        } else if ($(this).is("#cs")) {
            $(".bg").animate({ backgroundColor: "#c8751c" });
            $(this).addClass("hover");
            $("#fs, #al, #me, #dp, #re, #un").removeClass("hover");
        } else if ($(this).is("#al")) {
            $(".bg").animate({ backgroundColor: "#cab508" });
            $(this).addClass("hover");
            $("#fs, #cs, #me, #dp, #re, #un").removeClass("hover");
        } else if ($(this).is("#me")) {
            $(".bg").animate({ backgroundColor: "#91a16d" });
            $(this).addClass("hover");
            $("#fs, #cs, #al, #dp, #re, #un").removeClass("hover");
        } else if ($(this).is("#dp")) {
            $(".bg").animate({ backgroundColor: "#366081" });
            $(this).addClass("hover");
            $("#fs, #cs, #al, #me, #re, #un").removeClass("hover");
        } else if ($(this).is("#re")) {
            $(".bg").animate({ backgroundColor: "#858585" });
            $(this).addClass("hover");
            $("#fs, #cs, #al, #me, #dp, #un").removeClass("hover");
        } else if ($(this).is("#un")) {
            $(".bg").animate({ backgroundColor: "#31a1c5" });
            $(this).addClass("hover");
            $("#fs, #cs, #al, #me, #dp, #re").removeClass("hover");
        }
    },
        function() {
            $(this).children(".drop").fadeOut();
            $("#ctl00_Quotes, .text").fadeTo('normal', 1);
            $(".pic").fadeTo('normal', 0.5);
            $(this).removeClass("hover");
        });
    $("#ctl00_Quotes").hover(function() {
        $(this).children('.pic').fadeTo('normal', 1);
    },
        function() {
            $(this).children('.pic').fadeTo('normal', 0.5);
        });
});
