// SLIDER

$(document).ready(function(){
 
	$("#btn-slide").click(function(){
		$("#panel").slideToggle("slow");
		$(this).toggleClass("active"); 
		//$(this).text('new text.');
		
		return false;
	});
	
	
});

