﻿
try
{
$(function() {
    $(".directMenuItem_1").hover(
                function() { $(this).css({backgroundColor : '#54648c'}); },
                function() { $(this).css({backgroundColor : '#667bb0'}); }
                
        );
    $(".directMenuItem_2").hover(
                function() { $(this).css({backgroundColor : '#54648c'}); },
                function() { $(this).css({backgroundColor : '#93a2c9'}); }
                
        );
    $(".directMenuItem_3").hover(
                function() { $(this).css({backgroundColor : '#54648c'}); },
                function() { $(this).css({backgroundColor : '#aab8db'}); }
                
        );
});
}
catch(ex)
{
}