// JavaScript Document
$(document).ready(function(){
	$("a[rel='image-gallery']").colorbox({slideshow:true,slideshowAuto:false});
	  
	  $('#dates_arrive').datepick({dateFormat: 'dd - M - yy'});
	  $('#dates_depart').datepick({dateFormat: 'dd - M - yy'});
	  
	  $('#submit-booking').formValidator({
		scope		: '#frm-booking',
		errorDiv	: '#errors',
		onSuccess	: null
	   })
	   $('#submit-contact').formValidator({
		scope		: '#frm-contact',
		errorDiv	: '#errors',
		onSuccess	: null
	   })
	   
	   $('#gallery').galleria();

});
