Event.observe(window, 'load', function(step) {
  NewCarsStep1.init();
});
NewCarsStep1 = {
  car: null,
  init: function() {
    this.car = new CarSelector('new_car_secure_lead');
    this.car.focus();
  }
}
