$(function(){

	$('.show-more').click(function(){
//		var parent = $(this).parent();
//		$('.more',parent).toggle();

		$(this).next('.more').toggle();
		return false;
	});

})
