$(document).ready(function()
{
	$('.trimite').click(function(){
	
		var info = new Object();
		info.dl = $('#dl:checked').val();
		info.dna = $('#dna:checked').val();
		
		info.nume = $('input[@name="nume"]').val();
		info.prenume = $('input[@name="prenume"]').val();
		info.email = $('input[@name="email"]').val();
		info.telefon = $('input[@name="telefon"]').val();
		info.mesaj = $('textarea[@name="mesaj"]').val();
		
		jQuery.post('handler/send_contact',info,function(r)
		{
			if( r !="")
			{
				$.prompt(r);
			}
			else
			{
				$.prompt(lang.trans('Mesajul a fost trimis cu success. <br/>Va multumim','ro'));
				//clear all fields;
				$('table input:not(:last)').val('');
				$('table textarea').val('');
			}
		});
		return false;
	});
});

