$(document).ready(function(){
    
	$(".more").hide(1);
	
	$("a.show").click(function(){
		var no = ($(this).attr('id')).substr(5);
		$(this).hide(1);
		$("#more_"+no).show(200);
		return false; 
	});
	
});
