//<![CDATA[
//*===============================================================
//○初期化
//*===============================================================
j$( document ).ready( function() {
		//□拡大・縮小
		j$( 'div.information2' ).css( 'display','none' );
		j$( 'a.closeEl1' ).bind( 'click' , toggleContent1 );  //フランス本大会情報
		j$( 'a.closeEl2' ).bind( 'click' , toggleContent2 );  //日本大会情報
	}
);

//*===============================================================
//○拡大縮小
//*===============================================================
//フランス本大会情報
var toggleContent1 = function( e ) {
	if ( j$( 'div.information1' ).css( 'display' ) == 'none' ) {
		//□画像の切り替え(閉じる)
		j$( this ).html( '<img src="img/close.gif" alt="大会情報を閉じる" title="大会情報を閉じる" width="95" height="14" />' );
	} else {
		//□画像の切り替え(開く)
		j$( this ).html( '<img src="img/open.gif" alt="大会情報を開く" title="大会情報を開く" width="86" height="14" />' );
	}
	j$( 'div.information1' ).slideToggle(500);
};

//日本大会情報
var toggleContent2 = function( e ) {
	if ( j$( 'div.information2' ).css( 'display' ) == 'none' ) {
		//□画像の切り替え(閉じる)
		j$( this ).html( '<img src="img/close.gif" alt="大会情報を閉じる" title="大会情報を閉じる" width="95" height="14" />' );
	} else {
		//□画像の切り替え(開く)
		j$( this ).html( '<img src="img/open.gif" alt="大会情報を開く" title="大会情報を開く" width="86" height="14" />' );
	}
	j$( 'div.information2' ).slideToggle(500);
};
