// Standardize DOM method
if(document.all && !document.getElementById) {
    document.getElementById = function(id) {
         return document.all[id];
    }
}

// Show the video
function showVideo(objRef)
{
	objRef.style.display = "none";
	document.getElementById('fellowsVideoContainer').style.display = "block";
}
