
	hs.graphicsDir = 'http://www.keisoku.co.jp/highslide/graphics/';
	hs.outlineType = 'rounded-white';
	
	window.onload = function() {
	hs.preloadImages(5);
    }

	// Apply the Highslide settings
	hs.graphicsDir = 'http://www.keisoku.co.jp/highslide/graphics/';
	hs.outlineType = 'rounded-white';
	hs.outlineWhileAnimating = true;
	hs.allowSizeReduction = false;
	// always use this with flash, else the movie will be stopped on close:
	hs.preserveContent = false;
	hs.wrapperClassName = 'draggable-header no-footer';

	// 3) Optionally set the swfOptions. See http://highslide.com/ref/hs.swfOptions for full documentation
	/* hs.swfOptions = {
		version:			  "7",
		expressInstallSwfurl: null,
		flashvars:			{},
		params:			   {},
		attributes:		   {}
	}; */
	
	
	//折りたたみメニュー
	var prevObj = null
    function swDisp(elem) {
    if (elem.style.display == "block") {
        elem.style.display = "none"
    } else {
        elem.style.display = "block"
    }
    if (prevObj != null) {
        if (prevObj != elem) {
            prevObj.style.display = "none"
        }
    }
    prevObj = elem
    }


