﻿$().ready(function(){
    $(".textfield").focus(function(){
        $(this).toggleClass("textfield_focus");
    });
    
    $(".textfield").blur(function(){
        $(this).toggleClass("textfield_focus");
    });
    
    $(".large_single_page .close_window").click(function(){
        window.top.close();
        if($.browser.mozilla)
        {
            alert("您使用的Firefox不允许我们关闭窗口，请您直接关闭标签 ：-）");
        }
    });
    
    if($.browser.version=="6.0")
    {
        $(".large_single_page .close_window").remove();
    }    
});
