//---------------------------------------------------------------------------
$(document).ready(function()
{
	$('a.email').nospam({ replaceText: true });
	$('#anfrageSendButton').attr("disabled","disabled");
	$("#progressbar").hide();
	//---------------------------------------------------------------------------
	$('#anfrageSendButton').click(function(e)
	{
		$("#progressbar").show();
		
		$.ajax(
		{
   type: "POST",
   url: "anfragePost.php",
   data: $("#anfrageForm").serialize(),
   success: function(result)
			{
    $('#anfrageContent').html(result);
   }
 	});
	});
	//---------------------------------------------------------------------------
	$("#anfrageForm").bind("keyup", function()
	{
		if($('#anfrageName').val() != "" && $('#anfrageEmail').val() != "" && $('#anfrageNachricht').val() != "")
			$('#anfrageSendButton').attr("disabled","");
		else
			$('#anfrageSendButton').attr("disabled","disabled");
	});
	//---------------------------------------------------------------------------
});
//---------------------------------------------------------------------------
