/**********************************************
初期設定
***********************************************/

function init() {

	// menu thisCategoty
	nMenuList = {
		'home'			 : 'home',
		'topics'		  : 'topics',
		'event'			  : 'event',
		'cinema'		: 'cinema',
		'shop'			   : 'shop',
		'shopfloor'			   : 'p-floor',
		'shopcategory'			   : 'p-category',
		'webpdf'		: 'webpdf',
		'titles'		    : 'p-titles',
		'schedule'     :'p-schedule',
		'info'     :'p-info',
		'fee'     :'p-fee',
		'faq'     :'p-faq',
		'guide'     :'p-guid',
		'otoku'     :'p-otoku',
		'nono'		    : 'nono'
		}
		
	if (thisCategory) {
			var thisMenu = nMenuList[thisCategory];
			var ref = document.getElementById(thisMenu);
			ref.style.backgroundPosition = '0 -22px';
	} else {
		var thisMenu = 'nono';
	}

	if (thisPage) {
			var thisSubMenu = nMenuList[thisPage];
			var subref = document.getElementById(thisSubMenu);
			subref.style.backgroundPosition = '0 -36px';
	} else {
		var thisSubMenu = 'nono';
	}

			
			
			
}

