        $(document).ready(function(){
			//カルーセル
            var carrousel = jQuery("#myCarrousel").carrousel({
                auto		: true, //自動再生
                effects		: 'reflection', //反射効果
                easing		: 'swing', //別途jquery.easing.1.3.jsが必要
                speed 		: 1000, //切り替えスピード
                direction   : 'left', //スクロール方向
                dispTimeout : 2000, //停止時間
                dispNumber	: 8, //表示数
                htmlPrevButton: "",
                htmlNextButton: "",
				api			: true // コントローラーを付ける
			});
			
			//jQuery('#myCarrousel').mouseover(function () { //停止
			//		carrousel.stop(); 
			//});
			//jQuery('#topics_carrousel_image_Area').mouseout(function () { //開始
			//										  
	       	//		carrousel.start(); 
			//});
			
			
			//スクロール
            var shiftSpeed = 1500; //スライドスピード
            var SlideWidth = 123; //スライドの大きさ
            var SlideHeight = 170; //スライドの幅
            var columnCount = 2; //縦列の数
            var rowCount = 2; //横列の数
 
            //mouseover
            $("map#Map area").click( function() {
                navIndex = $("map#Map area").index(this);
                shiftBoxes( navIndex  );
            });
 
            function shiftBoxes(boxN) {
                var col = ( (boxN) % rowCount ) * -1;
                var row = Math.floor( (boxN) / columnCount ) * -1;
                $("#panel").stop().animate({
                    left: SlideWidth * col,
                    top: SlideHeight * row },
                
				shiftSpeed, "easeInOutCubic"  );
            }
        });
