	$(document).bind('reveal.facebox', function() { 
		$("#facebox #content_contact_form").ajaxForm({
			beforeSubmit: function(a,f,o) 
			{
		       	req_fields = $("#facebox").find(".content_contact_req[value='']");
				if( req_fields.length > 0 )
				{
					alert("All Fields Are Required");
					return false;
				}
				
	        	$("#facebox #content_contact").find('.submit_container').html("Please Wait... <img src='/the_guts/images/template_images/loader.gif'>");
		     },
	        success: function(data) {
				$("#facebox #content_contact").html("<p>Content Problem Notification</p><div style='padding: 15px;'><strong>Thank You.</strong> <br />Our content administrators have been notified.<br />This window will close itself in 5 seconds or you can use the 'Close' button above.</div>");
				setTimeout(function(){$.facebox.close(); },5000)
	    	}
		})
	})	

