$(document).ready(function(){
		$("#frm-paper").submit(function(){
			var nome = $('#nome').attr('value');
			var cognome = $('#cognome').attr('value');
			var azienda = $('#azienda').attr('value');
			var ruolo = $('#sRuolo').val();
			var telefono = $('#telefono').attr('value');
			var email = $('#email').attr('value');
			var file = $('#nomefile').attr('value');
			var pagina = $('#pagina').attr('value');
			if (nome != '' && cognome != '' && azienda != '' && ruolo != '' && email != '') {
				$('#box-paper-tendina').html('<img src="http://www.lenstrategy.it/images/services/loading.gif" width="200" height="30" alt="'+pagina+'" title="'+pagina+'" />');
				$.ajax({
					url: 'http://www.lenstrategy.it/servizi/request-paper.php',
					type: "POST",
					data: "nome="+nome+"&cognome="+cognome+"&azienda="+azienda+"&ruolo="+ruolo+"&telefono="+telefono+"&email="+email+"&file="+file,
					success: function(data) {
						$("#box-paper-tendina").html(data);
					} 
				});
				return false;
			}
		});
	});
	
	function showForm(){
		$('#box-paper-tendina').show('slow');
	}
	function hideForm(){
		$('#box-paper-tendina').hide('slow');
	}
