(function($) {
	
	CalloutView = Backbone.View.extend({
		el: $('.callouts')

		,initialize: function initialize () {
			_.bindAll(this, 'render');

			// this.render();
		}

		,render: function render () {
			var self = this
			,vars = this.model.toJSON()
			,template = _.template( $('#callout_template').html(), vars );

			// $(this.el).append( template );	

		}

	});

}(jQuery));
