var DateController = Class.create({
    initialize: function() {
        this.currentView = 'itinerary';
    },
    
    toView: function(viewId) {
        $(this.currentView).hide();
        $(viewId).show();
        this.currentView = viewId;
    }
    
});

