﻿//**************************************************
// 名称: Default.js
// 描述: 公共脚本
// 创建: guohua.cui
// 创建时间: 2008-10-18
// 版本: 1.0
//**************************************************

// 初始化
$(function(){ new DefaultClient().init(); });

function DefaultClient()
{
    this.init = function()
    {        
        // 绑定事件
        $("#gameUserTop>li:gt(0)").hover(
            function () {$(this).addClass("on");},
            function () {$(this).removeClass("on");}
        ); 
    }

}
