$(function()
{
	//======================================//
	// Collapsible extra information script //
	//======================================//

	$("#contact .optional *").hide();
	$("#contact .optional .hidden").show();

	$("#contact .optional .hidden").click(function()
	{
		$("#contact .optional *").show();
		$("#contact .optional .hidden").hide();
		hidden = false;
	});
	
	//=============================//
	// Required information script //
	//=============================//
	
	$("#contact #Submit").click(function()
	{
		var isBad = false;
		
		$("#contact .required").each(function()
		{
			if ($(this).val() == "")
			{
				alert("Please fill in all fields before submitting. This information helps us know how we can better help you.");
				$(this).focus();
				isBad = true;
				return false;
			}
		});
		
		if (isBad) return false;
	});
});