$(document).ready(function() {
  hidden = 1;
  $("#bottom_panel h3").click(function() {
		if(hidden) {
			$("#bottom_panel ul").show();
			$(this).html("Your Queries &#x25b2;");
			hidden = 0;
		}
		else {
			$("#bottom_panel ul").hide();
			$(this).html("Your Queries &#x25bc;");
			hidden = 1;
		}
  });
});
