// ＳＢＭメニュー呼び出し
function sbmMenuShow(o) {
	$(o).style.display='block';
}

// ＳＢＭメニュークローズ
function sbmMenuClose(o) {
	$(o).style.display='none';
}


// ■はてなブックマーク
function addSbmHatena() {
	return void(window.open('http://b.hatena.ne.jp/add?mode=confirm&title='+escape(document.title)+'&url='+escape(location.href)));
}

// ■Googleブックマーク
function addSbmGoogle() {
	return void(window.open('http://www.google.com/bookmarks/mark?op=add&bkmk='+encodeURIComponent(location.href)+'&title='+encodeURIComponent(document.title)));
}

// ■Yahoo!ブックマーク
function addSbmYahoo() {
	return void(window.open('http://bookmarks.yahoo.co.jp/bookmarklet/showpopup?t='+encodeURIComponent(document.title)+'&u='+encodeURIComponent(window.location.href)+'&opener=bm&ei=UTF-8'));
}

// ■del.icio.us
function addSbmDelicious() {
	return void(window.open('http://del.icio.us/post?url='+encodeURIComponent(location.href)+';title='+encodeURIComponent(document.title)));
}

// ■ライブドアクリップ
function addSbmLiveDrooClip() {
	return void(window.open('http://clip.livedoor.com/clip/add?link='+encodeURIComponent(location.href)+'&title='+encodeURIComponent(document.title)+'&tags='+''+'&notes='+''+'&jump=ref'));
}

// ■Buzzurl
function addSbmBuzzurl() {
	return void(window.open('http://buzzurl.jp/config/add/confirm?url='+encodeURIComponent(location.href)+'&title='+encodeURIComponent(document.title)));
}

// ■newsing
function addSbmNewsing() {
	return void(window.open('http://newsing.jp/add?'+'url='+encodeURIComponent(location.href)));
}

