$(document).ready(function(){
  
  $("#iamthesidebarbutton").click(function () {
    $("#mysidebar").slideToggle("slow");
	$(this).toggleClass("active");
  });
  
  $("#iamtheffffoundbarbutton").click(function () {
    $("#myffffoundbar").slideToggle("slow");
	$(this).toggleClass("active");
  });  

});
