﻿//<![CDATA[
 $(document).ready(function(){
     getFlyRecords();
     $("#flyRecordList").jdNewsScroll({ delay : 30, step : 6 });
 });
function getFlyRecords(){
    $.ajax({
        type: "POST",
        url: "/Crows/FlyRecords.aspx",
        data: "",
        timeout: 60000,
        success: function(msg){
            $("#flyRecordList").html(msg);
            setTimeout("getFlyRecords()", 60000);
        },
        error: function(xmlHttp){}
    }) ;
}
//]]>