$(document).ready(function() {
            var mygallery=new simpleGallery({
               wrapperid: "sg", /* ギャラリーを表示する要素のID名 */
               dimensions: [710, 175], /* 画像の幅、高さ（単位：ピクセル） */
               imagearray: [
                  /* [画像URL、リンク先URL、_new] */
                  ["http://pogobocco.com/rotator/header_img.gif","",""],
				  ["http://pogobocco.com/rotator/header_img4.jpg","",""],
                  ["http://pogobocco.com/rotator/header_img5.jpg","",""],
                  ["http://pogobocco.com/rotator/header_img6.jpg","",""],
                  ["http://pogobocco.com/rotator/header_img7.jpg","",""],
                  ["http://pogobocco.com/rotator/header_img9.jpg","",""],
				  ["http://pogobocco.com/rotator/header_img10.jpg","",""],
                  ["http://pogobocco.com/rotator/header_img12.gif","",""]
               ],
               autoplay: true, /* 自動再生の有無 */
               persist: false,
               pause: 3500, /* スライドする間隔（ミリ秒） */
               fadeduration: 2000, /* フェードする移行時間（ミリ秒） */
               oninit:function(){
                  //event that fires when gallery has initialized/ ready to run
               },
               onslide:function(curslide, i){ //event that fires after each slide is shown
                  //curslide: returns DOM reference to current slide's DIV (ie: try alert(curslide.innerHTML)
                  //i: integer reflecting current image within collection being shown (0=1st image, 1=2nd etc)
               }
            })
         });
