/** beginning of file 1 **/

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

/** beginning of file 2 **/

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

/** beginning of file 3 **/

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

;

