﻿// JScript File
function hideVideos() {	   
	new Effect.BlindUp('videosAll', {afterFinish: function (obj) { $("videosAll").style.display = "none"; }, duration: 0.4})
	document.getElementById("restoreVideo").style.display = "block";
	document.getElementById("hideVideo").style.display = "none";
}
function restoreVideos() {		
	new Effect.BlindDown('videosAll', {afterFinish: function (obj) { $("videosAll").style.display = "block"; }, duration: 0.4})
	document.getElementById("restoreVideo").style.display = "none";
	document.getElementById("hideVideo").style.display = "block";
}
