﻿
$(document).ready(function() {

    $(".ToolTipPopup").addClass("ToolTipPopupActive");

    $(".ToolTipPrice").hover(function() {
        $(this).next("div").animate({ opacity: "show", top: "-85" }, "fast");
        }, function() {
        $(this).next("div").animate({ opacity: "hide", top: "-95" }, "fast");
    });
   
    
    /*
    $(".componentpricingmenu span").hover(function() {
    $(this).next("em").animate({ opacity: "show", top: "-80" }, "fast");
    }, function() {
    $(this).next("em").animate({ opacity: "hide", top: "-90" }, "fast");
    });
    */
});
