﻿/* ボッシュ・イン・ジャパン */


jQuery( function( $ ) {
	var HASH_STRING = '#lineup';
	if ( $.cookie( 'productsIndexViewed' ) == 'yes' ) {
		// intro of Flash animation should be skipped if this page has been viewed before
		if ( location.hash != HASH_STRING ) {
			location.href = location.href + HASH_STRING;
		}
	} else {
		if ( location.hash == HASH_STRING ) {
			var unskippedUrl = location.href.replace( new RegExp( HASH_STRING ), '' );
			location.href = unskippedUrl;
		} else {
			$.cookie( 'productsIndexViewed', 'yes', { expires: 1, path: '/jp/aa/products/' } );  // set cookie to expire in 1 day
		}
	}
} );

function getCookies() {  // function to be called from ActionScript
	return document.cookie;
}

// alert( "Cookie currently set:\n" + getCookies() );

