// JavaScript Document
function showResponse()
{
	alert("Thank you for your interest in our Video. An e-mail has been sent to your address with a link to our video.");
}

$(document).ready(function ()
{	
	$("#watchVideo").click(function() { alert("coming soon"); });
	$("#videoForm").attr('action', "mailVideoLink.php");
	$("#videoForm").validate();
});