/* ボッシュ・イン・ジャパン */

jQuery( function( $ ) {
	
	// image rollovers for bscLocalMenu
	$( "ul#bcsLocalMenu li a img" ).each( function() {
		var rollover = $( this );
		var imgSrc = $( this ).attr( "src" );
		rollover.hover( 
			function() { $( this ).attr( "src", imgSrc.replace( /_off/, "_on" ) ); }, 
			function() { $( this ).attr( "src", imgSrc.replace( /_on/, "_off" ) ); } 
		);
	} );
	
	// give first item of bscLocalMenu no left margin
	$( "ul#bcsLocalMenu > li:first" ).css( "margin-left" , "0" );

} );

