$(function()
{	
	$("#Support FORM[name=support]").submit(function()
	{
		var mail  = $("#Support INPUT[name=email]").val()
		  , name  = $("#Support INPUT[name=name]").val()
		  , subj  = $("#Support SELECT[name=subject]").val()
		  , msg	  = $("#Support TEXTAREA[name=message]").val()
		  , bot   = $("#Support INPUT[name=captcha]").val()
		  , error = $("#Support .error");
		
		$.post
		(
			"/support.php",
			{ 
				"send": 1, 
				"name": name,
				"subject": subj, 
				"message": msg, 
				"captcha": bot,
				"email": mail
			},
			function(data)
			{
				data = eval('('+ data +')');

				if (data.error != "")
				{
					error
						.show()
						.find("DIV")
						.text(data.error)
					;
		
					setTimeout(function()
					{
						error
							.slideUp()
							.find("DIV")
							.text("")
						;
					}, 3000);
				}
				else
				{
					$("#Support .Main").hide("fast");
					$("#Support .Done").show("fast");
				}
			}
		)
				
		return false;
	});
});
