function showmenu(id) {
	$('.f7:visible').fadeOut('slow',function(){
		$('#apt_'+id).fadeIn('slow');
	});

}

function contact() {

	var error = '';

	var nume = $('#c_nume').val();
	var tel  = $('#c_tel').val();
	var mail = $('#c_mail').val();
	var msg  = $('#c_msg').val();

	if(nume.length==0) error += 'Va rugam introduceti un nume.\n';
	if(tel.length==0) error += 'Va rugam introduceti un numar de telefon.\n';
	if(mail.length==0) error += 'Va rugam introduceti o adresa de e-mail.\n';
	if(msg.length==0) error += 'Va rugam introduceti un mesaj.\n';

	if(error.length==0) {

		$.post('ajax.php?a=contact',
			{
				nume: nume,
				tel: tel,
				mail: mail,
				msg: msg
			},
			function(data){

				alert('Mesajul a fost trimis. Va vom contacta in cel mai scurt timp posibil.\nVa multumim!');

			}
		);

	} else {
		alert(error);
	}

}
