$(document).ready(function() {  
	$(".ToolTipPopup").addClass("ToolTipPopupActive");

    $(".ToolTipPrice").hover(function() {
        $(this).next(".ToolTipPopup").animate({ opacity: "show", top: "-75" }, "fast");
        }, function() {
        $(this).next(".ToolTipPopup").animate({ opacity: "hide", top: "-95" }, "fast");
    });
	

}); 


