/**
 *
 */

$( function() {
	if( parent && (typeof parent.g_is_meiryo != 'undefined') ) {
		g_is_meiryo = parent.g_is_meiryo;
	} else {
		var h = $('#fontchecker_outer').get(0).clientWidth;
		if( h == 10 ) {
			g_is_meiryo = true;
		} else {
			g_is_meiryo = false;
		}
	}

	if( !g_is_meiryo ) {
		$( '#ext_css' ).html( '<link href="css/msgothic.css" type="text/css" rel="stylesheet"/>' );
	} else {
		$( '#ext_css' ).html( '<link href="css/msmeiryo.css" type="text/css" rel="stylesheet"/>' );
	}
	
	$('A').each( function () {
         var o;
         var href;
         o = $(this);
         href = o.attr( 'href' );
         if( href && href.match( /^#/ ) ) {
                 o.click( function () {
                         var o = $(this);
                         href = o.attr( 'href' );
                         href = href.replace( /^#/, "" );
                         href = 'a[name=' + href + ']';
                         $.scrollTo( href, 1000 );
                         return false;
                 } );
         }
	} );
} );

/**
 *
 */