/* ボッシュ・イン・ジャパン */

jQuery( function( $ ) {
	var links = $( 'a.bspDemoLink' );
	links.each( function() {
		$( this ).click( function( e ) {
			openSubWindow( $( this ).attr( 'href' ), "bspDemoSubwindow", "width=360,height=340,menubar=no,location=no,resizable=yes,scrollbars=no,status=yes" );
			e.preventDefault();
		} );
	} );
} );

