$(function(){
	$("#slick-toggle").click(function(e){
		$("#slickbox").slideToggle("fast");
		// up = 8593, down = 8595, (this.text.length - 1) = 7 ("BROWSE V")
		$(this).text(
			this.text.substring(0, 7) + String.fromCharCode(
				this.text.charCodeAt(7) === 8593 ? 8595 : 8593
			)
		);
		e.preventDefault();
	})
});