// http://www.learningjquery.com/2008/02/simple-effects-plugins

$(document).ready(function() {
	$('#bs_expand').css('cursor','pointer');
	$('#bs_collapse').hide(); 
	
	$('#bs_expand').click(function() {
		if ($('#bs_expand').text() == 'More') {
			$(this).text('Close');
			$(this).toggleClass("arrow-up");
		} else {
		$('#bs_blurb').show();
			$(this).text('More');
			$(this).removeClass("arrow-up");
		};
		$(this).next('.normal').slideToggle();
		$(this).next('.slow').slideToggle('slow');
	});
});
