// Hide/show the like button (for when the video plays, for example)
function showSocialButtons() {
	document.getElementById("social").style.visibility = "visible";
	document.getElementById("fbholder").style.visibility = "visible";
	
	document.getElementById("social").style.display = "block";
}


function hideSocialButtons() {
	document.getElementById("social").style.visibility = "hidden";
	document.getElementById("fbholder").style.visibility = "hidden";
	
	document.getElementById("social").style.display = "none";
}


