( function( $ ) { $.fn.teamSelectButton = function( options )
{

    var is_open = false;
    var is_cnt  = false;

    // ▽ コンテナ定義
    $( '#cntTeamSelect' ).each( function () { is_cnt  = true; });
    if ( is_cnt == false )
    {
        $( "body" ).append( "<div id='cntTeamSelect' style='position:absolute;background:#FFFFFF' />" );
    }
    $( "#cntTeamSelect" ).css( "opacity", 0 );

    // ▽ チーム選択テーブル
    var teamSelectHtml = '<table id="TeamNavi">' +
                '<tr><td class="TeamNaviTitle yjS">セ･リーグ</td><td class="TeamNaviTitle yjS">パ･リーグ</td></tr>' +
                '<tr><td class="NpbCl inner" height="5"></td><td class="NpbPl inner" height="5"></td></tr>' +
                '<tr><td class="inner">' +
                '<div class="NpbLogoSS yjS">' +
                '<p><a class="pnS D" title="中日ドラゴンズ" href="http://baseball.yahoo.co.jp/npb/teams/4/">中日ドラゴンズ</a>' +
                '<p><a class="pnS T" title="阪神タイガース" href="http://baseball.yahoo.co.jp/npb/teams/5/">阪神タイガース</a>' +
                '<p><a class="pnS G" title="読売ジャイアンツ" href="http://baseball.yahoo.co.jp/npb/teams/1/">読売ジャイアンツ</a>' +
                '<p><a class="pnS S" title="東京ヤクルトスワローズ" href="http://baseball.yahoo.co.jp/npb/teams/2/">東京ヤクルトスワローズ</a>' +
                '<p><a class="pnS C" title="広島東洋カープ" href="http://baseball.yahoo.co.jp/npb/teams/6/">広島東洋カープ</a>' +
                '<p><a class="pnS YB" title="横浜ベイスターズ" href="http://baseball.yahoo.co.jp/npb/teams/3/">横浜ベイスターズ</a>' +
                '</div>' +
                '</td>' +
                '<td class="inner">' +
                '<div class="NpbLogoSS yjS">' +
                '<p><a class="pnS H" title="福岡ソフトバンクホークス" href="http://baseball.yahoo.co.jp/npb/teams/12/">福岡ソフトバンクホークス</a>' +
                '<p><a class="pnS L" title="埼玉西武ライオンズ" href="http://baseball.yahoo.co.jp/npb/teams/7/">埼玉西武ライオンズ</a>' +
                '<p><a class="pnS M" title="千葉ロッテマリーンズ" href="http://baseball.yahoo.co.jp/npb/teams/9/">千葉ロッテマリーンズ</a>' +
                '<p><a class="pnS F" title="北海道日本ハムファイターズ" href="http://baseball.yahoo.co.jp/npb/teams/8/">北海道日本ハムファイターズ</a>' +
                '<p><a class="pnS Bs" title="オリックス･バファローズ" href="http://baseball.yahoo.co.jp/npb/teams/11/">オリックス･バファローズ</a>' +
                '<p><a class="pnS E" title="東北楽天ゴールデンイーグルス" href="http://baseball.yahoo.co.jp/npb/teams/376/">東北楽天ゴールデンイーグルス</a>' +
                '</div>' +
                '</td>' +
                '</tr>' +
                '</table>';

    //-----------------------------------------------------------------
    //  表示
    //-----------------------------------------------------------------
    function showTeams () {
        $( "#cntTeamSelect" ).fadeTo( 200, 1 );
            is_open = true;
        $( '#gnb_navi #mn_npb_team' ).removeClass( 'team_button_off' );
        $( '#gnb_navi #mn_npb_team' ).addClass( 'team_button_on' );
    }
    //-----------------------------------------------------------------
    //  非表示
    //-----------------------------------------------------------------
    function hideTeams () {
        if ( is_open && !is_cnt ) {
            $( "#cntTeamSelect" ).fadeTo( 200, 0, function () {
                $( "#cntTeamSelect" ).html( '' );
            } );
            is_open = false;
            is_cnt  = false;
            $( '#gnb_navi #mn_npb_team' ).removeClass( 'team_button_on' );
            $( '#gnb_navi #mn_npb_team' ).addClass( 'team_button_off' );
        }
    }
    //=================================================================
    //  マウスオーバーハンドラ
    //=================================================================
    $( '#cntTeamSelect' ).mouseover( function () {
        is_cnt  = true;
    } );
    //=================================================================
    //  マウスアウトハンドラ
    //=================================================================
    $( '#cntTeamSelect' ).mouseout( function () {
        is_cnt  = false;
    } );
    //=================================================================
    //  チームポップアップクリックハンドラ
    //=================================================================
    this.click( function () {

        if ( !is_open ) {
            $( "#cntTeamSelect" ).css( "opacity", 0 );
            $( "#cntTeamSelect" ).html( teamSelectHtml );
            $( "#cntTeamSelect" ).css( "top", $( this ).offset().top + $( this ).height() + 1 );
            $( "#cntTeamSelect" ).css( "left", $( this ).offset().left - ( $( '#cntTeamSelect' ).width() / 2 ) );
            showTeams();
        } else {
            hideTeams();
        }

        return false;
    } );
    //=================================================================
    //  ページクリックハンドラ
    //=================================================================
    if ( options.doc ) {
        $( options.doc ).click ( function () {
            hideTeams();
        } );
    }
} } )( jQuery );

