/************************************************************
*                                                           *
* Copyright 2010 - osonadissenyweb.com                      *
*                                                           *
************************************************************/

$(document).ready(function(){
	$('#nom').focus();
	$("#enviar").click(function() {
		if ($('#nom').val() == "" || $('#mail').val() == "" || $('#consulta').val() == ""){
			$.fn.colorbox({width:"400px", initialWidth:"400px", open:"true", inline:true, href:"#campsobligatoris"});
			return false;
		}
		else{
			var s = $('#mail').val();
			var filter=/^\w+([\.-]?\w+)*@\w+([\.-]?\w+)*(\.\w{2,4})+$/;
			if (filter.test(s)){
				var peticion = $.ajax({
					url:  'core/php/envia-form.php',
					type: 'POST',
					data: { nom: $('#nom').val(), poblacio: $('#poblacio').val(), email: $('#mail').val(), telefon: $('#telefon').val(), consulta: $('#consulta').val(), motiu: $('#motiu').val(), adresa: $('#adresa').val() },
					success: function(transport) {
						if (transport == "ok") {
							$('#contact-form')[0].reset();
							$.fn.colorbox({width:"400px", initialWidth:"400px", open:"true", inline:true, href:"#enviat"});
						}
						else {
							$.fn.colorbox({width:"400px", initialWidth:"400px", open:"true", inline:true, href:"#noenviat"});
						}
					}
				});
			}
			else{
				$('email').focus();
				$.fn.colorbox({width:"400px", initialWidth:"400px", open:"true", inline:true, href:"#errormail"});
			}
		}
	});
});