////----------------------------------------------------------------
$(document).ready(function(){
	$(".acccordion_content").hide();		   
	$("a h3").click(function(){
		if($(this).is(".active")) {
         $(this).toggleClass("active");
         $(this).parent().next(".acccordion_content").slideToggle();
         return false;
		} else {
			$(".acccordion_content:visible").slideUp("slow"); // close all visible divs with the class of .content
			$("h3.active").removeClass("active");  // remove the class active from all h3's with the class of .active
			$(this).toggleClass("active");
			$(this).parent().next(".acccordion_content").slideToggle();
			return false;
		}
	});
});
////----------------------------------------------------------------
$(document).ready(function() {
    $(".tipLink").hover(function() {
        if ($(".hover", this).css("display") == "block") { return false; }
        os = $(this).offset();
				offHeight = parseInt($(".tipLink .hover").height());
        $(".hover", this).css({top: os.top-offHeight-10+"px", left: os.left-318+"px"}).animate({top: os.top-offHeight+"px", opacity: "show"}, 300);
    },
    function() {
        os = $(this).offset();
        $(".hover", this).animate({top: os.top-offHeight+10+"px", opacity: "hide"}, 100);
    });
});

