$(document).ready(function(){

    $("div#gettothepoint").hide();
    
    $("a#verticalpop").click(function ()
    {
     $("div#gettothepoint").toggle("slide", {direction: "down"}, "slow");
     return false; 
    });
    
    $("a#verticalpop_down").click(function ()
    {
     $("div#gettothepoint").toggle("slide", {direction: "down"}, "slow");
     return false; 
    });
    
    $("a#verticalpop_down2").click(function ()
    {
     $("div#gettothepoint").toggle("slide", {direction: "down"}, "slow");
     return false; 
    });

});