if(i==2*times){
			  clearInterval(t);
			  ele.removeClass(cls);
		  }
		  },200);
	  };
  });
  scrollbackground();
</script>
<div id="main">
  <div id="cloud"></div>
  <div id="login-bar" class="selector"></div>
  <div id="login-form">
    <form id="form1" name="form1" method="post" action="">
      <input name="__hash__" id="__hash__" value="<?php 
echo formHash();
?>
" type="hidden"/>
      <input name="refer" id="refer" value="<?php 
echo $refer;
?>
" type="hidden"/>
      <div id="form-l">
      	帐号:<input name="user" class="txt" type="text"  id="user" value="" />
        密码:<input class="txt" name="password" id="password" type="password" value=""/>
      </div>
      <div id="form-r">
        <input id="login-btn" name="sub" type="submit" class="button b-blue" value="登录系统" />
      </div>
    </form>
  </div>
 private function buildMisc()
 {
     if (!$this->is_misc) {
         return false;
     }
     $this->var['form_hash'] = formHash();
     define('FORM_HASH', $this->var['form_hash']);
     if ($this->init_user) {
         if ($this->var['user']['status'] == -1) {
             systemError('user_banned', null);
         }
     }
     if ($this->var['setting']['ip_access'] && !ipAccess($this->var['client_ip'], $this->var['setting']['ip_access'])) {
         systemError('user_banned', null);
     }
     if ($this->var['setting']['nocacheheaders']) {
         @header("Expires: -1");
         @header("Cache-Control: no-store, private, post-check=0, pre-check=0, max-age=0", FALSE);
         @header("Pragma: no-cache");
     }
 }