
/******************************************************************************************************************/
// On document load...
/******************************************************************************************************************/

$(function(){
	// fancy box
	$('A.fancybox').fancybox({
		'zoomOpacity'			: true,
		'zoomSpeedIn'			: 300,
		'zoomSpeedOut'			: 300,
		'frameWidth'			: 800,
		'frameHeight'			: 500
	});
	
	// datepicker
	$('.datepick').datepicker({ 
		showOn: 'both',
		buttonImage: '/wp-content/themes/hotel/images/icon-calendar.gif',
		buttonImageOnly: true,
		monthNames: ['Gennaio','Febbraio','Marzo','Aprile','Maggio','Giugno','Luglio','Agosto','Settembre','Ottobre','Novembre','Dicembre'],
		dayNamesMin: ['Do', 'Lu', 'Ma', 'Me', 'Gi', 'Ve', 'Sa'],
		dateFormat: 'dd/mm/yy',
		currentText: 'Oggi'
	});
	
	// validation
	$('#frm-dates').validate({
		rules: {
			datefrom: { required: true },
			dateto: { required: true },
			persone: { required: true }
		},
		messages: {
			datefrom: '&uarr; inserire una data',
			dateto: '&uarr; inserire una data',
			persone: '&uarr; inserire il numero di persone'
		}
	});
	
	$('#main .myform form').validate({
		rules: {
			nome: { required: true },
			email: { required: true },
			tel: { required: true },
			message: { required: true }
		},
		messages: {
			nome: '&uarr; campo obbligatorio',
			email: '&uarr; campo obbligatorio',
			tel: '&uarr; campo obbligatorio',
			message: '&uarr; campo obbligatorio'
		}
	});
});
