$(document).ready(function(){
	$("#moreBox").hide();
		$("#adviserVoice span.more a").click(function(){
		$(this).parent().next().slideDown("300");
		$(this).hide();
	});
});

