// JavaScript Document
 function mapinion_Dock(){
   var dock = new MacStyleDock(
	  document.getElementById('dock'),
      [
          {
                 name:      '/Image/Social-icons/mixi_',
            extension: '.jpg',
            sizes:     [96, 96],
            onclick:   function(){window.open('http://mixi.jp/');}
          },
          {
                  name:      '/Image/Social-icons/facebook_',
            extension: '.jpg',
            sizes:     [96, 96],
            onclick:   function(){window.open('http://www.facebook.com/sharer.php?u='+encodeURIComponent(location.href)+'&t='+encodeURIComponent(document.title));}
          },
          {
                 name:      '/Image/Social-icons/twitter_',
            extension: '.jpg',
             sizes:     [96, 96],
            onclick:   function(){window.open('http://twitter.com/home/?status='+encodeURIComponent(document.title)+ ' ' +encodeURIComponent(location.href));
                       }
          },
          {
                 name:      '/Image/Social-icons/hatena_',
            extension: '.jpg',
           sizes:     [96, 96],
            onclick:   function(){
                         window.open('http://b.hatena.ne.jp/add?mode=confirm&title='+escape(document.title)+'&url='+escape(location.href));
                       }
          },
          {
               name:      '/Image/Social-icons/yahoo_',
            extension: '.jpg',
             sizes:     [96, 96],
            onclick:   function(){
                       window.open('http://bookmarks.yahoo.co.jp/bookmarklet/showpopup?t='+encodeURIComponent(document.title)+'&u='+escape(location.href));
                       }
          },
          {
                  name:      '/Image/Social-icons/livedoor_',
            extension: '.jpg',
             sizes:     [96, 96],
            onclick:   function(){window.open('http://clip.livedoor.com/clip/add?link='+encodeURIComponent(location.href)+'&title='+encodeURIComponent(document.title));}
          },
		  {
                  name:      '/Image/Social-icons/fc2_',
            extension: '.jpg',
             sizes:     [96, 96],
            onclick:   function(){window.open('http://bookmark.fc2.com/user/post?url='+encodeURIComponent(location.href)+'&title='+encodeURIComponent(document.title));}
          },
          {
                name:      '/Image/Social-icons/nifty_',
            extension: '.jpg',
            sizes:     [96, 96],
            onclick:   function(){window.open('http://clip.nifty.com/create?url='+encodeURIComponent(location.href)+'&title='+encodeURIComponent(document.title));}
          },
		    {
                name:      '/Image/Social-icons/buzzurl_',
            extension: '.jpg',
            sizes:     [96, 96],
            onclick:   function(){window.open('http://buzzurl.jp/config/add/confirm?url='+encodeURIComponent(location.href)+'&title='+encodeURIComponent(document.title));}
          },
          {
                   name:      '/Image/Social-icons/google_',
            extension: '.jpg',
            sizes:     [96, 96],
            onclick:   function(){window.open('http://www.google.com/bookmarks/mark?op=edit&bkmk='+encodeURIComponent(location.href)+'&title='+encodeURIComponent(document.title));}
          },
          {
                  name:      '/Image/Social-icons/delicious_',
            extension: '.jpg',
            sizes:     [96, 96],
            onclick:   function(){window.open('http://del.icio.us/post?url='+encodeURIComponent(location.href)+'&title='+encodeURIComponent(document.title));}
          },
		  {
                  name:      '/Image/Social-icons/stumbleupon_',
            extension: '.jpg',
            sizes:     [96, 96],
            onclick:   function(){window.open('http://www.stumbleupon.com/submit?url='+encodeURIComponent(location.href)+'&title='+encodeURIComponent(document.title));}
          }
        ],
        50,
        80,
        2);
 }
