$(document).ready(function(){
    $(".b_menu").mouseenter(function(){
     $(this).animate({width: "+=8px", height: "+=3px", left: "-=4px", top: "-=1.5px"}, 80);
     return false;
    }); 
});

$(document).ready(function(){
    $(".b_menu").mouseleave(function(){
     $(this).animate({width: "-=8px", height: "-=3px", left: "+=4px", top: "+=1.5px"}, 80);
     return false;
    }); 
});

$(document).ready(function(){
    $(".bp_button").toggle(
     function(){
      $(this).parents(".bp").children(".span_switch").toggle(0);
     },
     function(){
     $(this).parents(".bp").children(".span_switch").toggle(0);
     return false;
     }     
    ); 
});

$(document).ready(function(){
    $(".button").mousedown(function(){
     $(this).animate({top: "+=2px"},0);
     return false;
    }); 
});

$(document).ready(function(){
    $(".button").mouseup(function(){
     $(this).animate({top: "-=2px"},0);
     return false;
    }); 
});

$(document).ready(function(){
     $(".mtfbtch").animate({Opacity: "hide"},0);
     return false;
});

$(document).ready(function(){
    $(".add_block").click(function(){
     $(".mtfbtch").animate({Opacity: "show"},0);
     return false;
    }); 
}); 