/*
This file holds controls the video dissapearing on each page.
 */
function killItem (id) {
	//alert ("test");
	var d = document.getElementById('info');
	var target = document.getElementById(id);
	d.removeChild(target);
}