var splashVideoHtml;


$(document).ready(function() {

	splashVideoHtml = $("#splashVideo").html();
	$("#splashVideo").empty();

	$("#videoBtn").click(function() {
		$("html").css("overflow","hidden");
		$("#splashScreen").show();
		$("#splashVideo").html(splashVideoHtml);
		roundCorners("#splashVideo");
		$("#cancelBtn").click(function() {
			$("#splashScreen").hide();
			$("#splashVideo").hide();
			$("#splashVideo").empty();
			$("html").css("overflow","auto");
		});
		$("#splashVideo").show();
	});
	
});