jQuery(function($) {
	$("#main_image").html('&nbsp;');
	$(".menu01").html('<a href="../omotenashi/index.html" title="おもてなし"><img src="../themes/default/menu_1_d.jpg" alt="おもてなし" class="unroll" /></a>');
});

//フルスクリーン
function OpenFullscreen(nextURL){ 
	if((detectOS() == 'Windows') && (detectBrowser() == 'IE')) { 
		window.open(nextURL,'test','fullscreen=yes,scrollbars=no'); 
	} else { 
		FullScreen(nextURL); 
	}
} 
function detectVersion() { 
	version = parseInt(navigator.appVersion); 
	return version; 
} 
function detectOS() { 
	if(navigator.userAgent.indexOf('Win') == -1) { 
		OS = 'Macintosh'; 
	} else { 
	OS = 'Windows'; 
	} 
	return OS; 
} 
function detectBrowser() {
	if(navigator.appName.indexOf('Netscape') == -1) { 
		browser = 'IE'; 
	} else { 
		browser = 'Netscape'; 
	} 
	return browser; 
} 
function FullScreen(nextURL){ 
	if((detectOS() == 'Macintosh') && (detectBrowser() == 'Netscape')) { 
	} 
	if((detectOS() == 'Macintosh') && (detectBrowser() == 'IE')) {  
		winOptions = 'fullscreen=yes,scrollbars=no'; 
	}
	if((detectOS() == 'Windows') && (detectBrowser() == 'Netscape')) { 
	}
	if(detectVersion() < 4) { 
		self.location.href = 'index.html'; 
	} else { 
		var winwidth= screen.availWidth;
		var winheight= screen.availHeight; 
		var winSize = 'width=' + winWidth + ',height=' + winHeight; 
		var thewindow = window.open(nextURL, 'test', winSize); 
		thewindow.moveTo(0,0); 
	} 
}
//フルスクリーン ここまで

