function send(){
	$.ajax({
			type: "POST",
			url: "http://www.spidersolutions.ro/send-msg",
			data: ({ robot:$('input#robot').val(), nume: $('input#nume').val(), email: $('input#email').val(), telefon:$('input#telefon').val(),mesaj:$('textarea#mesaj').val()}),
			success: function(msg){
					$('.wpcf7-response-output').html(msg);
					$('.wpcf7-response-output').show(1000);
					$('input#nume').val('');
					$('input#email').val('');
					$('input#telefon').val('');
					$('textarea#mesaj').val('');					
				}
		}); 
}

