		$(document).ready(function() {
			$(".sceneSubmitBox").fancybox({
				'titlePosition'		: 'inside',
				'transitionIn'		: 'none',
				'transitionOut'		: 'none',
				'scrolling'			: 'no',
				'centerOnScroll'	: true,
				'overlayOpacity'	: 0.8,
				'titleShow'			: false,
				'overlayColor'		: '#333'
			});
		});

		function submitSceneForm()
		{
			var isChecked = $('#isOver18').is(':checked');
			var formFilled = true;

			if ($('#userName').val() == "")
			{
				formFilled = false;
			}

			if ($('#userEmail').val() == "")
			{
				formFilled = false;
			}

			if ($('#userComments').val() == "")
			{
				formFilled = false;
			}

			if ($('#Captcha').val() == "")
			{
				formFilled = false;
			}


			if (isChecked && formFilled)
			{
				//alert("yes");
				var returned = "";

				$.post("./fancybox/sceneSubmit.php", { name: $('#userName').val(), email: $('#userEmail').val(), sceneDetails: $('#userComments').val(), captcha: $('#Captcha').val(), submit: "1" },
				   function(data) {

				   	 returned = data.split("|");

				   	 alert(returned[1]);
				   	 if (returned[0] != "ERROR")
				   	 {
				   	 	$.fancybox.close();
				   	 }


				   });
			}
			else
			{
				alert("Please complete all fields and certify that you are over 18!");
			}

			return false;
		}
