$(function() {

    $("#explore-area").hide();
    
    $("#toggle-explore").click(function(){
        $("#explore-area").stop().slideToggle(500, function() {
            if ($("#explore-area").is(":visible")) {
                var theHeight = $("#explore-area").height();
                $("#wrap").animate({
                    paddingTop: theHeight + "px"
                });
            } else {
                $("#wrap").animate({
                    paddingTop: "0px"
                });
            }
        });
        return false;
    });
    
});