$(function(){
	var domain = "http://txqz.net";
	$(".entry-meta").each(function(i){
		var uri = $("a[@rel='bookmark']",$(this)).attr("href");
		var bookmarks = [
			 {"name": "ld", "full":"livedoor クリップ", "uri": "http://clip.livedoor.com/page/"+domain+uri, "img": "http://image.clip.livedoor.com/counter/small/"+domain+uri}
			,{"name": "hb", "full":"はてなブックマーク", "uri": "http://b.hatena.ne.jp/entry/"+domain+uri, "img": "http://b.hatena.ne.jp/entry/image/"+domain+uri}
			,{"name": "bz", "full":"Buzzurl", "uri": "http://buzzurl.jp/entry/"+domain+uri, "img": "http://api.buzzurl.jp/api/counter/v1/image?url="+domain+uri}
		];
		var title = $(this).parent(".hentry").children(".entry-title").text();
		for(var each in bookmarks) {
			var cont = '<li class="sbm '+bookmarks[each].name+'"><a href="'+bookmarks[each].uri+'"><img src="'+bookmarks[each].img+'" alt="'+bookmarks[each].full+" - "+title.replace(/&/g,"&#38;").replace(/</g,"&#60;").replace(/>/g,"&#62;").replace(/\"/g,"&#34;")+'" /></a></li>';
			$(this).prepend(cont);
		}
		/*
		$(".sbm",$(this)).each(function(){
			if($(this).width() < 30 || $(this).width() > 50)
				$(this).remove();
		});
		*/
	});
});