//social.js
/* 20110926 jun fujimura */
/*
<div class="social-buttons group">
	<div class="twitter">
		<a href="https://twitter.com/share" class="twitter-share-button" data-count="none" data-lang="ja">Tweet</a><script type="text/javascript" src="//platform.twitter.com/widgets.js"></script>
	</div>
	<div class="facebook">
		<iframe src="//www.facebook.com/plugins/like.php?href&amp;send=false&amp;layout=button_count&amp;width=70&amp;show_faces=false&amp;action=like&amp;colorscheme=light&amp;font=arial&amp;height=21" scrolling="no" frameborder="0" style="border:none; overflow:hidden; width:70px; height:21px;" allowTransparency="true"></iframe>
	</div>
	<div class="mixi">
		<iframe scrolling="no" frameborder="0" allowTransparency="true" style="overflow:hidden; border:0; width:58px; height:20px" src="http://plugins.mixi.jp/favorite.pl?href=http%3A%2F%2Fcorporate.kyusai.co.jp%2F&service_key=2e3a1ef1dc0f634b220966c2d3e675de7dbc8eba&show_faces=true&width=58"></iframe>
	</div>
</div>
*/
(function(){
	$(window).bind('load',function(){
		//var url = location.protocol + '//' + location.host + location.pathname;
		var url = location.protocol + '//' + 'corporate.kyusai.co.jp' + location.pathname;
		var html = '';
		html += '<div class="twitter"><a href="https://twitter.com/share" class="twitter-share-button" data-count="none" data-lang="ja">Tweet</a><script type="text/javascript" src="//platform.twitter.com/widgets.js"></script></div>';
		html += '<div class="facebook"><iframe src="//www.facebook.com/plugins/like.php?href=' + encodeURI(url) + '&amp;send=false&amp;layout=button_count&amp;width=70&amp;show_faces=false&amp;action=like&amp;colorscheme=light&amp;font=arial&amp;height=21" scrolling="no" frameborder="0" style="border:none; overflow:hidden; width:70px; height:21px;" allowTransparency="true"></iframe></div>';
		html += '<div class="mixi"><iframe scrolling="no" frameborder="0" allowTransparency="true" style="overflow:hidden; border:0; width:58px; height:20px" src="http://plugins.mixi.jp/favorite.pl?href=' + encodeURI(url) + '&service_key=2e3a1ef1dc0f634b220966c2d3e675de7dbc8eba&show_faces=true&width=58"></iframe></div>';
		$('.social-buttons').append(html);
	});
})();
document.write('<div class="social-buttons group"></div>');

