﻿$(document).ready(function () {
    $("#Date").datepicker({ minDate: '0' });
    $('#Address').submitonenter('search');

    
    
});

var tid = setInterval(mycode, 10000);
function mycode() {
    $.ajax({
        type: "POST",
        url: "/Home/PropertySlider/",
        data: {},
        success: function (o) {
            $("#InnerPhotoContainer").hide().html(o).fadeIn('slow');
        }
    });
}



$(function () {
    if (!$.support.placeholder) {
        $("#Address").watermark('Enter Address, City or Zip');
        $("#Date").watermark(' Date');
    }
});
