function onSubmitForm(message) {
	var emptyInputFields = "";
	var counter = 0;
	
	$('input.required').each(function(iterator) {
		if(jQuery.trim(this.value) == '') {
			if(counter != 0) {
				emptyInputFields += ", ";
			}
			
			emptyInputFields += this.name;
			counter++;
		}
	});
	
	if(emptyInputFields != '') {
		alert(message + " " + emptyInputFields);
		return false;
	}
	
	if(jQuery.trim($('#message').val()) == '') {
		alert(message + " message");
		return false;
	}
	
	return true;
}

function sendform(message, msgsuccesstitle, msgsuccess) {
	if(!onSubmitForm(message))
		return;
	
	
	// name, company, phone, address, email, website, message
	var dataString = 'name='+ $('input#name').val() + '&email=' + $('input#email').val() + '&phone=' + $('input#phone').val() + '&company=' + $('input#company').val() + '&address=' + $('input#address').val() + '&website=' + $('input#website').val() + '&message=' + $('#message').val();
alert('data:' + dataString);
	$.ajax({  
		type: "POST",  
		url: "http://www.jefklak.com/hosted/pimentform.php",  
		data: dataString,  
		success: function() {  
			$('#contact_form').html("<h2>" + msgsuccesstitle + "</h2><p>" + msgsuccess + "</p>");  
		}  
	});
}

