$(function(){
     $(".section").click(function(){
         window.location=$(this).find("a").attr("href");
         return false;
    });
});

$(function(){
     $(".tooltip a").hover(function() {
        $(this).next("span").animate({opacity: "show", top: "-10"}, "slow");}, function() {
               $(this).next("span").animate({opacity: "hide", top: "-10"}, "fast");
     });
});

