    
//解决回调函数中，this引用无效的问题
this.bind = function(instance, method)
{
    return function()
    {
	    method.apply(instance, arguments);
    }
}

 $(document).ready(function() {
        GetSkyList();
});


this.GetSkyList = function()
{
    Request.sendPOST("/NewSkyList.aspx?n=2", "",
    this.bind(this, this.ReturnNewList), null, null);
}

this.ReturnNewList = function(req)
{
    $("#NEWSKY").html(req.responseText);
     $('#NEWSKY').cycle({ 
            fx:     'scrollUp', 
            timeout: 5000,
            delay:  3000
        }); 
}


