$(function() {

	$('a#carousel-toggle').click(function() {
		$('#carousel').slideToggle(400);
		$(this).text($(this).text() == 'show ' ? 'hide ' : 'show ');
		return false;
	});

})
