function fade_score()
{
    var goyeah_append_score = $.cookie('goyeah_append_score');
    if(parseInt(goyeah_append_score) > 0)
    {
         $('#fadeOut').show();
         $('#fadeOut').css({position:'absolute', top:'10px'});
         $('#fadeOut').fadeIn('slow');
         $('#fadeOut').html("+" + goyeah_append_score);
         $("#fadeOut").fadeOut("slow",function(){});
    }
}
var _step=0; // 后台输出是否有新信息数据
var _title=document.title;
var game_tips_internal;
function show_game_tips()
{
    _step++
    if (_step==3) {_step=1}
    if (_step==1) {document.title='　　　　'+_title}
    if (_step==2) {document.title='進入游戲　'+_title}
    game_tips_internal = setTimeout("show_game_tips()",500);
}
function stop_game_tips()
{
    document.title=_title;
    if(game_tips_internal)
    {
        clearTimeout(game_tips_internal);
    }
}
fade_score();