jQuery(document).ready(function(){


	jQuery('.accordion li li h3').prepend('<span>more</span>');
	jQuery('.accordion ul h3').toggle(
		function() {
			jQuery(this).children('span').text('less');
			jQuery(this).siblings('p').slideDown('slow');
		},
		function() {
			jQuery(this).children('span').text('more');
			jQuery(this).siblings('p').slideUp('slow');
		}
	
	);

});
