
$(function(){
    $("#content").hide();
    $.ajax({
        url:"http://www.hxindian.com/campaign101/GetSession.aspx?d="+new Date(),
        type:"post",
        data:"",
        async:false,
        success:function(msg)
        {
            if(msg!=1)
            {
                    if($.cookie("age")==null)
                    {
                        $.ajax({
                            url:"http://www.hxindian.com/campaign101/SetSession.aspx?d="+new Date(),
                            type:"post",
                            async:false,
                            success:function(data){
                                if(data!=1)
                                {
                                   //alert("error"); 
                                }
                            }
                        });
                         $.colorbox({href:"http://www.hxindian.com/welcome.aspx",speed:300,onComplete:function(){$("#content").show();}
	                      });
                     }
                     else
                     {
                        $("#content").show();
                     }
            }
            else
            {
                  $("#content").show();
            }
        }
    });
});
