$(function() {
	// Switch the text "hide" & "show" on click as well as the animation
	$(".dropbox").show();
	$("#toggle a").toggle(function () {
		$(this).text('Hide Details');
		$("div#panel").slideDown('slow', 'easeOutBounce');
	}, function() {
		$(this).text('Show Details');
		$("div#panel").slideUp('slow', 'easeOutCubic');
	});	
});
