﻿$(document).ready(function () {

    $("li").mouseover(function () {
        $(this).removeClass("inactive");
        $(this).addClass("active");
        $("li.active").animate({ width: "320px" }, { duration: 300, queue: false });
        $("li.inactive").animate({ width: "44px" }, { duration: 300, queue: false });
    });
    $("li").mouseout(function () {
        $(this).removeClass("active");
        $(this).addClass("inactive");
        $("li").animate({ width: "98px" }, { duration: 300, queue: false });
   //     $('#income').hide('slow');
   //     $('#wfh').hide('slow');
   //     $('#lifestyle').hide('slow');
  //      $('#support').hide('slow');
   //     $('#qstart').hide('slow');
    });

});
