﻿$(document).ready(function() {
    $("#CMSListMenu1_LI_0_2_79").hover(function() {
        var currPos = $(this).position();
        $("#mainMenuProducts").css("top", currPos.top + 25);
        $("#mainMenuProducts").fadeIn('fast');
        $(this).css("background-color", "#7ca63f");
    });

    $("#mainMenuProducts").hover(
        function() { },
        function() {
            $(this).fadeOut('fast');
            $("#CMSListMenu1_LI_0_2_79").css("background-color", "#aed477");
        }
    );
});