function submitForm() {
	var data = 'fullname='+encodeURIComponent($('input[name=fullname]').val())+'&email='+encodeURIComponent($('input[name=email]').val())+'&phone='+encodeURIComponent($('input[name=phone]').val())+'&comments='+encodeURIComponent($('textarea[name=comments]').val());
	
	$('div#contact .opaque').fadeIn('slow', function() {
		$('div#contact .processing').fadeIn('slow', function() {
			$.ajax({
				url: 'scripts/form.send.php', 
				type: 'POST', 
				data: data, 
				dataType: 'text', 
				success: function(text) {
					if (text != '') {
						alert(text);
						
						$('div#contact .processing').fadeOut('fast', function() {
							$('div#contact .opaque').fadeOut('fast');
						});
					}else{
						alert('Form successfully sent');
						$('div#contact .processing').fadeOut('fast', function() {
							$('div#contact .processed').fadeIn('slow');
						});
					}
				}
			});
		});
	});
}

function highlightForm() {
	$('div#contact .highlight').fadeIn('slow', function() {
		setTimeout("$('div#contact .highlight').fadeOut('slow')", 100);
	});
}
