$(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");
    });
	
	$('.tabs a').click(function() {
		$('.active').removeClass('active');
		$(this).addClass('active');
		$('.tabing').hide();
		var content_show = $(this).attr("href");
		$(content_show).slideDown(500);
	});
}); 
