//	On load, do these functions
$(function() { 
	//intially hide #videoLinks
	$("#videoLinks").hide();
	//function to show #videoLinks
	$("#hideVideoLinks").click(function() {
	$("#videoLinks").toggle();
	});
});
