
$(function() {
	// vitual tab
	$( '#navi a:first' ).addClass( 'sel' );
	$( '#navi a' ).click( function(){
		$( '#navi a' ).removeClass( 'sel' );
		$( this ).addClass( 'sel' );
		var objId = ( $( this ).attr( 'href' ) );
		$( '#week, #official' ).hide();
		$( objId ).show();
		if( objId == '#all' ) {
			$( '#week, #official' ).show();
		}
		return false;
	});

	// Tab display switch 
	var href = location.href;
	q = href.split( "#" )[1];
	if ( q ) {
		$( '#navi a' ).removeClass( 'sel' );
		var objSel = '#' + q;
		$( '#week, #official' ).hide();
		$( 'a[@href$= "' + q + '"]' ).addClass( 'sel' );
		if( objSel == '#all' ) {
			$( '#week, #official' ).show();
		}
		$( objSel ).show();
		return false;
	}
});

