$(document).ready(function(){


	
/* ------------------------------------------ Leftbar ------------------------------------------ */

	$('#leftbarbook_wrapper').hover(function() {
		$('#leftbar_bookinfo').fadeIn(150);	
	}, function() {
		$('#leftbar_bookinfo').fadeOut(100);	
	});

  	$('#leftbar_nights').focus(function() {
		if($(this).val() == this.defaultValue)
		$(this).val("");
	});

	$('#leftbar_nights').blur(function() {
		if($(this).val() == "")
		$(this).val(this.defaultValue);
	});


	$("#leftbar_date").datepicker({
		showButtonPanel: true,
		currentText: '',
		closeText: 'Close',
		minDate: 0,
		dateFormat: 'dd/mm/yy',
		//onClose: function(date) { 
		//	$("#bookbar").validate().element( "#bookbar_NEW" ) 
		//},
		onSelect: function(dateText,picker) {
		   $('#bookDay').val( dateText.split(/\//)[0] );
		   $('#bookMonth').val( dateText.split(/\//)[1] );
		   $('#bookYear').val( dateText.split(/\//)[2] );
		}   
	});

	


	

});
