$(function() {
	/**
	 * .facebook_like　のところにフェースブックのいいねボタンをつける
	 */
	$(".facebook_like").each(function() {
		var encoded_url;
		if ($(this).html() == "") {
	    	encoded_url = encodeURIComponent(document.URL);
	    } else {
	    	encoded_url = encodeURIComponent($(this).html());
	    }
	    var html = '<iframe src="http://www.facebook.com/plugins/like.php?href=' + encoded_url + '&amp;layout=button_count&amp;show_faces=true&amp;width=150&amp;action=like&amp;font=tahoma&amp;colorscheme=light&amp;height=21" scrolling="no" frameborder="0" style="border:none; overflow:hidden; width:100px; height:21px;" allowTransparency="true"></iframe>';
	    $(this).html(html);
	});
});
