function showbookmark(){
	var url  = document.location.href;
	var html = '<div id="bookmark_container"> ' +
	'<table width="100%" border="0" cellpadding="1" cellspacing="0">' +
	'<tr>'+
	'<td colspan="2" bgcolor="#eeeeee" height="25" valing="middle">Bookmark and Share</td>'+
	'</tr><tr>'+
	'<td width="50%" align="left"><a href="http://del.icio.us/post?url='+url+'" target="_blank"><img src="/extensions/bookmark/images/delicious.png" width="18" height="18" />Del.icio.us</a></td><td width="50%" align="left"><a href="http://myjeeves.ask.com/mysearch/BookmarkIt?v=1.2&t=webpages&url='+encodeURIComponent(url)+'" target="_blank"><img src="/extensions/bookmark/images/ask.png" width="18" height="18" />Ask</a></td>'+
	'</tr><tr>'+
	'<td width="50%" align="left"><a href="http://www.google.com/bookmarks/mark?op=edit&output=popup&bkmk='+encodeURIComponent(url)+'" target="_blank"><img src="/extensions/bookmark/images/google.png" width="18" height="18" />Google</a></td><td width="50%" align="left"><a href="http://digg.com/submit?phase=2&url='+encodeURIComponent(url)+'" target="_blank"><img src="/extensions/bookmark/images/digg.png" width="18" height="18" />Digg</a></td>'+
	'</tr><tr>'+
	'<td width="50%" align="left"><a href="http://www.facebook.com/sharer.php?u='+encodeURIComponent(url)+'" target="_blank"><img src="/extensions/bookmark/images/facebook.gif" width="18" height="18" />Facebook</a></td><td width="50%" align="left"><a href="http://furl.net/storeIt.jsp?u='+encodeURIComponent(url)+'" target="_blank"><img src="/extensions/bookmark/images/furl.png" width="18" height="18" />Furl</a></td>'+
	'</tr><tr>'+
	'<td width="50%" align="left"><a href="http://www.linkedin.com/shareArticle?mini=true&url='+encodeURIComponent(url)+'" target="_blank"><img src="/extensions/bookmark/images/linkedin.gif" width="18" height="18" />LinkedIn</a></td><td width="50%" align="left"><a href="https://favorites.live.com/quickadd.aspx?marklet=1&mkt=en-us&url='+encodeURIComponent(url)+'" target="_blank"><img src="/extensions/bookmark/images/live.png" width="18" height="18" />Live</a></td>'+
	'</tr><tr>'+
	'<td width="50%" align="left"><a href="http://ma.gnolia.com/bookmarklet/add?url='+encodeURIComponent(url)+'" target="_blank"><img src="/extensions/bookmark/images/magnolia.png" width="18" height="18" />Magnolia</a></td><td width="50%" align="left"><a href="http://favorites.my.aol.com/ffclient/AddBookmark?url='+encodeURIComponent(url)+'" target="_blank"><img src="/extensions/bookmark/images/myaol.gif" width="18" height="18" />myAOL</a></td>'+
	'</tr><tr>'+
	'<td width="50%" align="left"><a href="http://www.myspace.com/Modules/PostTo/Pages/?u='+encodeURIComponent(url)+'" target="_blank"><img src="/extensions/bookmark/images/myspace.gif" width="18" height="18" />MySpace</a></td><td width="50%" align="left"><a href="http://www.newsvine.com/_wine/save?u='+encodeURIComponent(url)+'" target="_blank"><img src="/extensions/bookmark/images/newsvine.png" width="18" height="18" />Newsvine</a></td>'+
	'</tr><tr>'+
	'<td width="50%" align="left"><a href="http://reddit.com/submit?url='+encodeURIComponent(url)+'" target="_blank"><img src="/extensions/bookmark/images/reddit.png" width="18" height="18" />Reddit</a></td><td width="50%" align="left"><a href="http://www.stumbleupon.com/submit?url='+encodeURIComponent(url)+'" target="_blank"><img src="/extensions/bookmark/images/stumbleupon.png" width="18" height="18" />StumbleUpon</a></td>'+
	'</tr><tr>'+
	'<td width="50%" align="left"><a href="http://www.technorati.com/faves?add='+encodeURIComponent(url)+'" target="_blank"><img src="/extensions/bookmark/images/technorati.png" width="18" height="18" />Technorati</a></td><td width="50%" align="left"><a href="http://twitter.com/home?status=Add+This:'+encodeURIComponent(url)+'" target="_blank"><img src="/extensions/bookmark/images/twitter.gif" width="18" height="18" />Twitter</a></td>'+
	'</tr><tr>'+
	'<td width="50%" align="left"><a href="http://bookmarks.yahoo.com/toolbar/savebm?opener=tb&u='+encodeURIComponent(url)+'" target="_blank"><img src="/extensions/bookmark/images/yahoo_bookmarks.gif" width="18" height="18" />Yahoo Bookmarks</a></td><td width="50%" align="left"><a href="http://myweb2.search.yahoo.com/myresults/bookmarklet?u='+encodeURIComponent(url)+'" target="_blank"><img src="/extensions/bookmark/images/yahoo_myweb.gif" width="18" height="18" />Yahoo MyWeb</a></td>'+
	'</tr></table>' +
	'</div>';
	if(document.getElementById('bookmark_container') == null){
		$('#bookmark').append(html);	
		$('#bookmark_container').hover(function(){}, function(){$(this).remove()});
	}
	//$('#bookmark_container').mouseout(function(){$(this).remove()});
}

