var property = 0;
var propertyQuery = '';

	$(document).ready(function() {

        $('.datePicker').each(function(){
           $(this).datepicker({
               dateFormat: 'yy-mm-dd'
           });
        });

        });

        function nextStep() {

            if(property != 0) {

                propertyQuery = '&property=' + property;

            }

            $.ajax({

                url: 'http://www.business-shortstay.com/booking/home/ajax_checkavailability',
                type: 'post',
                data: 'arrivaldate=' + $('#arrivaldate').val() + '&departuredate=' + $('#departuredate').val() + propertyQuery,
                success: function(html) {

                    if(html != 1) {

                        alert('There are no appartments available in the given period');

                    } else {

                        window.location = 'http://booking.business-shortstay.com/home/chooseappartment';

                    }

                }

            });

	}

