var PaymentView = View.extend({ el: "#payment", events: { }, initialize: function(){ this.address = new AddressView ({ parent: this }) this.cc = new CreditCardView ({ parent: this }) }, show: function(){ document.body.className = "payment" }, })