$(document).ready(function()
{
	$("#votebutton").click(function()
	{
		var options = 
		{
			success: function(data){ $("#votecount").html(data); },
			clearForm: true,
			resetForm: true
		};
		$('#voteform').ajaxSubmit(options);
		
		return false;
	});
	
	$("#invitebutton").click(function()
	{
		var options = 
		{
			beforeSubmit: function(a,f,o)
			{
				$("#invite").html("<h3>Die E-Mail wird verschickt</h3>");
			},
			success: function(data)
			{
				$("#invite").html("<h3>Danke. Die Empfehlung wurde versendet.</h3>");
			},
			clearForm: true,
			resetForm: true
		};
		$('#inviteform').ajaxSubmit(options);
		
		return false;
	});
	
});
