jQuery.fn.voter = function() {
  return this.each(function(){
  	try {
  		var widget = new Dictatr.Widget.Voter({ element: this});
  		// widget.render();
  	} catch(e) {
  		console.debug(e);
  		// continue;
  	}
  });
};

