function Calendar() {
  $.datepicker.setDefaults({
    dateFormat: "mm/dd/yy",
    yearRange: "2000:2015",
    duration: "",
    showOn: "none"
  });
  function show(el) {
    $(el).datepicker().datepicker("show");
  }
  this.show = show;
  return this;
}
