$(document).ready(function(){
	$("#btnArea").hide();
});

function reloadIframe(fsrc,tsrc){
	$(document).ready(function(){
		$("#facebook iframe").attr('src', fsrc);
		
		var twitterIframe = '<iframe src="'+tsrc+'" scrolling="no" frameborder="0" style="border:none; overflow:hidden; width:130px; height:20px;" allowTransparency="true"></iframe>';
		$("#twitter iframe").replaceWith(twitterIframe);
		
	});
}

function setHiddenSnsButton(b){
	if ( b ) {
	　　$("#btnArea").show();
	} else {
	　　$("#btnArea").hide();
	}
}
