// Custom site initialization goes here.
jQuery.fn.fadeToggle = function(speed, easing, callback) {
return this.animate({opacity: 'toggle'}, speed, easing, callback);  
};


$(document).ready(function() {
	$("#numberOfNights").val(1);
    $('#tell_a_friend_form').hide();
    $('#tell_a_friend_link, #tell_a_friend_form a.close').bind('click', function(e) {
			$("#tell_a_friend_form").fadeToggle('slow');
		 	// e.preventDefault();
			return true;
	
	
  });

	// Set default Check in day to today
		$("#checkIn")[0].value = getISOStringFromDate(new Date());
		var tomorrow = getDateFromISOString($("#checkIn")[0].value);
		tomorrow.setTime(tomorrow.getTime() + (1000 * 3600 * 24));

});



