$(function() {

	$('.article .more').click(function() {
		var a = $(this).find('a');
		if (a.html() == 'more')
			a.html('less');
		else
			a.html('more');
		$(this).parent().find('.ellipsis').toggle();
		$(this).parent().find('.rest').slideToggle('');
	})
		
	$('.rest').hide();

});

