﻿$(document).ready(function()
{
    $("#imgSeePlansAndPricing").mouseenter(function()
    {
        $(this).attr("src", "/Content/Images/SeePlansAndPricingHover.gif");
    });
    $("#imgSeePlansAndPricing").mouseleave(function()
    {
        $(this).attr("src", "/Content/Images/SeePlansAndPricing.gif");
    });
});

