$(document).ready(function() {
    $("#wrapper").height($(window).height() - 36);
    $(window).resize( function() {
        $("#wrapper").height($(window).height() - 36);
    });
    $("div.menu a.share").bind("click",function(){
        return false;
    }).toggle(
    function () {
        $("div.share").css("display","block");
        $(this).addClass("active");
        $("div.share").animate({
            bottom: "33px" 
        }, "fast");
    },
    function () {
        $(this).removeClass("active");
        $("div.share").animate({
            bottom: "-220px" 
        }, "fast");
    });
});