/**
 * jQuery - Config file
 */
jQuery(function($) {

	$.googleAnalytics('UA-10800406-1');

	$('a[href^="http"]').not('a[href^="http://'+ location.host +'"]').NewWinOpen();
	$('a img, input:image').not('#header h1 img').rollover();

	(function(basePath) {
		$('body').css({backgroundImage: 'url(/'+ basePath +'/share/img/body_bg.jpg)'});
		$('#container').wrapInner(
			$('<div/>', {
				id: 'wrap',
				css: {
					backgroundImage: 'url(/'+ basePath +'/share/img/wrap_bg.jpg)'
				}
			})
		);
	})(location.pathname.split('/')[1]);

	$('#gNavi li ul').subNavigation();
	$('#floorGuide a').lightBox();

	$('a[href="/nara/virtual/"]').NewWinOpen([
		'width=950',
		'height=599',
		'center=no',
		'location=no',
		'toolbar=no',
		'status=no',
		'menubar=no',
		'scrollbars=no',
		'directories=no',
		'resizable=no',
		'maximize=no'
	].join(','));

});