/* ボッシュ・イン・ジャパン */

jQuery( function( $ ) {
	
	// make accordion functionality for area list
	$( '.accordion' ).each( function() {
		$( '> li > a', this ).each( function( index ) {
			var $this = $( this );
			$this.next().hide();
			$this.click( function( e ) {
				e.preventDefault();
				var params = { height: 'toggle', opacity: 'toggle' };
				$( this ).next().animate(params).parent().siblings()
					.children( 'ul:visible' ).animate( params );
			} );
		} );
	} );
	
	// set style for last item in area list
	$( '#extraContent #areaList ul.prefectures:last' ).css( 'border-bottom', '1px solid #BFD2E3' );
	
} );

