		function include(astrFile)
		{
			var script = document.createElement('script');
			script.src = astrFile;
			script.type = 'text/javascript';
			script.defer = true;
			document.getElementsByTagName('head').item(0).appendChild(script);
		}
		include('/blogparts/jquery/jquery-latest.pack.js');
		include('/blogparts/jquery/jquery.easing.1.3.js');
		include('/blogparts/jquery/lightbox/js/jquery.lightbox-0.3.1.js');
		//include('/blogparts/jquery/css-dock-menu/js/interface.js');
		include('/blogparts/jquery/jqGalScroll/jqGalScroll.js');
		include('/blogparts/jquery/greybox/greybox.js');
		
		$(function() {

			$('a.LBox').lightBox();
    		$("ul.jqGalScroll").jqGalScroll({height:268,width:400,ease:'easeInOutCubic',speed:1000});
		    $("ul.subcat").hide();

    		$("span.Stoptitle").hover(function(){
        		// 対象オブジェクトに入った
        		$(this).addClass("hover").removeClass("Stoptitle");
        		}, function(){
        		// 対象オブジェクトから抜けた
        		$(this).addClass("Stoptitle").removeClass("hover");  
        		}).click(function(){
        		$(this).next().toggle();
    		});
		});