jQuery(document).ready(function(){
	jQuery(".more").click(function(){
		var id_name = $(this).attr('id');
		
		$(this).css("display", "none");	
		$("#"+id_name+"_more").css("display", "block");
	});
	
})
