$(function() {
	$('.error').hide();
	$('.text-input').css({backgroundColor:"#FFFFFF"});
	$('.text-input').focus(function(){
		$(this).css({backgroundColor:"#FFDDAA"});
	});
	$('.text-input').blur(function(){
		$(this).css({backgroundColor:"#FFFFFF"});
	});

	$(".button").click(function() {
		// validate and process form
		// first hide any error messages
		$('.error').hide();

		var email = $("input#email").val();
		var domen = $("input#domen").val();
		var opis = $("textarea#opis").val();

		var dataString = 'domen='+ domen + '&email=' + email + '&opis=' + opis;

		$("#submit_btn").value = "..."
		
		$.ajax({
			type: "POST",
			url: "process.php",
			data: dataString,
			success: function(msg) {
				$('#post_message').html(msg);
			}
		});
		return false;
	});
});

