$(document).ready(function() {

	$("A.fancy").fancybox({
	    'padding'           : 0,
        'autoScale'     	: false,
        'transitionIn'		: 'none',
		'transitionOut'		: 'none',
		'height'			: 340,
		'width'			: 455,
	});


	var frmContact = $("#contactform");
	if (frmContact.length) {


		$('#contactform').validate({
			errorPlacement: function(error, element) {
				error.appendTo( element.parent() );
			},
			rules: {
				nome: { required: true },
				localita: { required: true },
				tel: { required: true },
				email: { required: true },
				descrizione: { required: true }
			},
			messages: {
				nome: '&uarr; campo obbligatorio',
				localita: '&uarr; campo obbligatorio',
				tel: '&uarr; campo obbligatorio',
				email: '&uarr; campo obbligatorio',
				descrizione: '&uarr; campo obbligatorio'
			}
		});

	}

	var mapOpen = $("#mappa");
	if (mapOpen.length) {

		$("#mappa").fancybox();

	}

});
