/* ボッシュ・イン・ジャパン */

jQuery( function( $ ) {
	
	$.preloadImages(
		"/jp/bcs/images/bcsTOP_btn_01_on.gif", 
		"/jp/bcs/images/bcsTOP_btn_02_on.gif", 
		"/jp/bcs/images/bcsTOP_btn_03_on.gif" 
	);
	
	// toggle decriptions by clicking headlines
	var togglerLinks = $( '#mainContent h2.example-link' );
	togglerLinks.click( function() {
		var duration = 200;
		var togglee = $( this ).next( 'div.example-content' );
		var toggler = $( 'span.toggler', $( this ) );
		if ( togglee.css( 'display' ) == 'none' ) {
			togglee.animate( { height: 'show', opacity: 'show' }, duration, 'swing' );
			$( this ).addClass( 'open' );
		} else {
			togglee.animate( { height: 'hide', opacity: 'hide' }, duration, 'swing' );
			$( this ).removeClass( 'open' );
		}
	} );
	
	// toggle description headline text color
	$( 'span.text', togglerLinks ).hover( 
		function() { $( this ).css( 'color', '#DF0024'    ); },
		function() { $( this ).css( 'color', '#153B63' ); }
	);
	
} );

