﻿hts.home = function() {
    //  Perform initialization for the home page
    var init = function() {
        //Setup location drop down list
        $("#LocationSelect").append($("<option />").html("Select One").attr("selected", "selected"));

        //Setup roator
        $("#rotator-container").rotator();

        $('input[type="text"].datetime').datepicker({
            minDate: (new Date()),
            dateFormat: 'm/d/yy'
        });
    }

    return {
        init: init
    }
} ();
