$(document).ready(function(){
	$('input[@name="search_btn"]').click(get_thsrc_info);
	if(typeof(_IG_Analytics)=='function')_IG_Analytics('UA-1787781-10', '/igoogle/thsrc');
}
);
function get_thsrc_info(){
	$('#waiting').show();
	$('#result_table').hide();
	$('input[@name="search_btn"]').attr('disabled',true);
	var rpc = new PHPRPC_Client('http://bawbaw-hu.deep.tw/thsrc/rpc.thsrc.php', ['get_thsrc_info']);
		rpc.get_thsrc_info(
		$('#ddlStation0').val(),
		$('#ddlStation1').val(),
		$('#ddlTimeBegin').val(),
		$('#ddlTimeEnd').val(),
		function(result){
			$('#waiting').hide();
			var html_str='';
			//for(var i=1;i<=nums;i++){
			for(var i in result){
				html_str+='<tr><td>'+result[i]['car_order']+'</td><td>'+result[i]['start_time']+'</td><td>'+result[i]['end_time']+'</td><td>'+result[i]['use_time']+' 分</td></tr>';
			}
			$('#result_table>tbody').html(html_str);
			$('input[@name="search_btn"]').attr('disabled',false);
			$('#result_table').show();
			$('#result_table>tbody tr:nth-child(2n+1)').attr('class','bg1');
			if(typeof(_IG_AdjustIFrameHeight)=='function')_IG_AdjustIFrameHeight();
			if(typeof(_IG_Analytics)=='function')_IG_Analytics('UA-1787781-10', '/igoogle/thsrc');
		});
}