$(document).ready(function() {
	$('a.more').click(function(e) {
		e.preventDefault();
	  $(this).siblings('.div-more').slideToggle('fast');
	  if($(this).children('span').first().css('display') == 'none') {
		 $(this).children('span').first().css('display', 'inline');
		 $(this).children('span').last().css('display', 'none');
	  }
	  else {
		 $(this).children('span').last().css('display', 'inline');
		 $(this).children('span').first().css('display', 'none');
	  }
	});
});
