	var placeHolder = new Image(275,223);
	placeHolder.src = "images/ytubeplhder.gif";

function hideVideo() {
	document.embeds[0].className = "hidden";
};
function showVideo() {
	var getItDamn = document.blackvHolder.src;
	if (getItDamn == "http://www.liquid-deprenyl.com/jtk/images/videocover.gif") {
	document.embeds[0].className = "indexVideo";
	}

};
function switchVideo() {
	document.blackvHolder.src = placeHolder.src;
	document.embeds[0].className = "hidden";
	var newHTML = "<a href='javascript:void(0);' onclick='restoreVideo()' id='vidsLink'>switch to introduction video</a>";
	document.getElementById("swtichVids").innerHTML = newHTML;
var newText = document.createTextNode("Video of Latest Update");
var oldText = document.getElementById("vidTitle").childNodes[0];
var newFull = document.getElementById("vidTitle").replaceChild(newText, oldText);
//	document.getElementById("vidWrap").parentNode.removeChild(document.getElementById("swtichVids"));
};
function restoreVideo() {
	document.blackvHolder.src = "images/videocover.gif";
	document.embeds[0].className = "indexVideo";
	var newHTML = "<a href='javascript:void(0);' onclick='switchVideo()' id='vidsLink'>switch video to latest update</a>";
	document.getElementById("swtichVids").innerHTML = newHTML;
var newText = document.createTextNode("Overview Of Section");
var oldText = document.getElementById("vidTitle").childNodes[0];
var newFull = document.getElementById("vidTitle").replaceChild(newText, oldText);
};