	// comment control
	jQuery("#comment_form").ready(function() {
		jQuery("#reply").click(function() {			
			$.post("run/reply.php", { 
				comment_to: "<? if ($type=='a') {echo 'a_'.$s;};if ($type=='s') {echo 's_'.$search_id;}?>", 
				poster: jQuery("#poster").val(),
				msg: jQuery("#msg").val()
				},
			function(data){				
				jQuery("#poster").val('');
				jQuery("#msg").val('');				
				jQuery("#comment_list").append(data);				
			});

		});			
	});

	jQuery("#go_talk").click(function() {
		scrollTo(0,findPosY(jQuery("#comment_form").get(0)));
		jQuery("#poster").get(0).focus();
	});
	