$(document).ready(function(){

	$("a.btn-slide").click(function() {

		$("#panel").slideToggle("slow");

        return false;

	});

});