$(document).ready(function(){
	$('#more').hide();
	
	$('a.more').click(function() {
		if ($(this).hasClass('show')) {
			$(this).removeClass('show');
			$(this).addClass('hide');
			$(this).text('Hide');
			$('.dots').hide();
			$('#more').slideDown('slow');
		} else {
			$(this).removeClass('hide');
			$(this).addClass('show');
			$(this).text('Continue reading');
			$('.dots').show();
			$('#more').slideUp('slow');
		}
		
		return false;
	});
});