$(document).ready(function(){
	
	$(".show").click(function () {
		$("#topics-panel").show("slide", { direction: "right" }, 500);
		$(this).addClass("hide");
		$(".close").removeClass("hide");
		return false;
	});
	$(".close").click(function () {
  		$("#topics-panel").hide("slide", { direction: "left" }, 500);
		$(".close").addClass("hide");
		$(".show").removeClass("hide");
		return false;
	});
	
	Shadowbox.init();	
	
});
