$(function() {

$(".btn-slide").click(function(){
$("#slide").slideToggle("slow");
$(this).toggleClass("active");
return false;
});
});


