// JavaScript Document

$(document).ready(function(){   $(".menu-item-28").toggle(
    function () {
        $("#join-bg").animate({height: "254px"}, 500, "easeInOutQuad")
    },
    function () {
        $("#join-bg").animate({height: "0px"}, 500, "easeInOutQuad");
		return false;
    }
);});

$(document).ready(function(){   $(".menu-item-38").toggle(
    function () {
        $("#message-box").animate({height: "400px"}, 500, "easeInOutQuad")
    },
    function () {
        $("#message-box").animate({height: "0px"}, 500, "easeInOutQuad")
    }
);});
