var CollectionView = View.extend({ el: "#collection", template: $("#collection .template").html(), events: { }, initialize: function(){ this.$content = this.$(".content") }, show: function(){ document.body.className = "collection" }, populate: function(){ }, })