// JavaScript Document
//**********************jQUERY ***********************************************
jQuery(function() {
	jQuery("#profitipp_box").hide();
	jQuery("#profitipp_image").click(function () {
		if (jQuery("#profitipp_box").css("display")=="none") {
			jQuery("#profitipp_box").show("slide", { direction: "up" },500);
		} else {
      jQuery("#profitipp_box").hide("slide", { direction: "up" },500);
		}
	});
});
