/* ボッシュ・イン・ジャパン */

jQuery( function( $ ) {
	// timeline scrolls in
	$( '#timelineImage' ).animate( { 'left' : '-=540px' }, { duration: 'slow', easing: 'swing' } );
	
	$( 'area.descriptionLink' ).each( function() {
		$(this).attr( 'title', $(this).attr( 'alt' ) );
		$(this).click( function( event ) { 
			event.preventDefault();
			var url = $(this).attr( 'href' );
			var windowParams = 'width=416, height=600, toolbar=no, location=no, directories=no, scrollbars=no, status=no, menubar=no, resizable=yes';
			var subWindow = window.open( url, 'historyDescriptionSubWindow', windowParams );
			subWindow.focus();
			subWindow.opener = self;
		} );
	} );
	
	$( 'area.chartLink' ).each( function() {
		$(this).attr( 'title', $(this).attr( 'alt' ) );
		$(this).click( function( event ) { 
			event.preventDefault();
			var url = $(this).attr( 'href' );
			var windowParams = 'width=500, height=600, toolbar=no, location=no, directories=no, scrollbars=yes, status=no, menubar=no, resizable=yes';
			var subWindow = window.open( url, 'historyChartSubWindow', windowParams );
			subWindow.focus();
			subWindow.opener = self;
		} );
	} );
} );

