﻿$(document).ready(function ()
{
    var AnimateBackgroundTime = 300;

    /*-------------------------------------------------------------------------
    Insurance Section Mouseover Animations
    -------------------------------------------------------------------------*/
    $(".InsuranceSection").hover(function ()
    {
        $(this).css("cursor", "pointer");
        $(this).stop(true, true).animate({ "background-color": "#EAE8DD" }, AnimateBackgroundTime);
    }, function ()
    {
        $(this).stop(true, true).animate({ "background-color": "#F3F1E5" }, AnimateBackgroundTime);
    });

});
