$(document).ready(function(){
	$('#search').click(
		function(){
			$('#waiting').show();
			$('.clear_rs').trigger("click");
			yahoo_dict();
		}
	);
	$('.clear_rs').click(
		function(){
			$('.clear_rs').hide();
			$('#dict_p').hide('slow');
		}
	);
}
)
function yahoo_dict(){
	var rpc = new PHPRPC_Client('http://bawbaw.deep.tw/rpc_server.php', ['yahoo_dict']);
		rpc.yahoo_dict($('#q').val(),function(result){
			$('#dict_p,.clear_rs').show('slow');
			$('#waiting').hide();
			$('#dict_p').html(result);
		});
}