$(document).ready(function() {	
	$('.show_more').click(function() {
		if($(this).html().search('more') == -1) $(this).html($(this).html().replace('less','more'));
		else $(this).html($(this).html().replace('more','less'));
		$(this).prev('.slidingDiv').toggle('fast');
		return false;
	});	
});



