jQuery(document).ready(function(){
	
	$('#contactform').submit(function(){
	
		var action = $(this).attr('action');
		
		$("#message").slideUp(750,function() {
		$('#message').hide();
		
 		$('#submit')
			.after('<img src="images/assets/ajax-loader.gif" class="loader" /> Va rugam asteptati')
			.attr('disabled','disabled');
		
		$.post(action, { 
		   	licente: $('#licente').val(),
		   	ron: $('#ron').val(),
			remote: $('input:checkbox:checked').val(),
			numef: $('#numef').val(),
			codf: $('#codf').val(),
			reg: $('#reg').val(),
			banca: $('#banca').val(),
			cont: $('#cont').val(),
			total: $('#total').val(),
			name: $('#name').val(),
			email: $('#email').val(),
			website: $('#website').val(),
			logo: $('#logo').val(),
			adresa: $('#adresa').val(),
			judet: $('#judet').val(),
			oras: $('#oras').val(),
			cod: $('#cod').val(),
			tel: $('#tel').val(),
			purpose: $('#purpose').val(),
			goal: $('#goal').val(),
			target: $('#target').val(),
			style: $('#style').val(),
			blog: $('#blog').val(),
			budget: $('#budget').val(),
			like: $('#like').val(),
			comments: $('#comments').val(),
			verify: $('#verify').val()
		},
			function(data){
				document.getElementById('message').innerHTML = data;
				$('#message').slideDown('slow');
				$('#contactform img.loader').fadeOut('slow',function(){$(this).remove()});
				$('#contactform #submit').attr('disabled',''); 
				if(data.match('success') != null) $('#contactform').slideUp('slow');
				
			}
		);
		
		});
		
		return false; 
	
	});
	
});
