$( window ).load( function() {
    $.ajax( {
    	url: './api_ichioshi.php?time=' + ( new Date() ).getTime(),
        cache: false,
        async: true,
        dataType: 'html',
        type: 'GET',
        success: function( data, dataType ) {
    	    if ( data != '' ) {
    	    	$( '#homeIchioshi' ).css( 'display', '' ).html( data ) ;
    	    	$( window ).trigger( 'resize' ) ;
    	    	//wrapHeight();
    	    	//rollOverSet();
    	    }
    	}
    } ) ;
} ) ;


