	$(document).ready( function() {	
			$('#swp_ajaxLoading').ajaxStart(function(){$(this).show();});
			$('#swp_ajaxLoading').ajaxStop(function(){$(this).hide();});
		}
	);

	function submitVideo() { $.post( '/featured-video/submit', {name:$('#swp_fv_name').val(),email:$('#swp_fv_email').val(),phone:$('#swp_fv_phone').val(),url:$('#swp_fv_url').val()} , videoSubmitComplete ); }
	function showSubmitVideo() { $.post( '/featured-video/form', haveVideoSubmit ); }
	function cancelSubmitVideo() { $('#swp_fvideo_submit').hide(); $('#swp_fvideo').show(); }
	function haveVideoSubmit(content) { $('#swp_fvideo_submit').html(content); $('#swp_fvideo_submit').show(); $('#swp_fvideo').hide(); $('#swp_fv_name').focus(); }
	function videoSubmitComplete(content) { cancelSubmitVideo(); $('#swp_fvideo_message').html(content); $('#swp_fvideo_message_container').show(); setTimeout(hideVideoSubmitMessage,6000); }
	function hideVideoSubmitMessage() { $('#swp_fvideo_message_container').fadeOut(); }
	