$(document).ready(function() {
	$("#explore-button").click(function(event) {
		event.preventDefault();
		$("#explore").slideToggle("slow");
		
		if($(this).html() == "Explore more") {
			$(this).html("Close");
		} else {
			$(this).html("Explore more");
		}
	});
});
