# Methods added to this helper will be available to all templates in the application.
module ApplicationHelper
  def vote_button item
    "<a href=\"" + url_for(:controller => :vote, :action => item.class.to_s, :id => item.id) + '"><img src="/images/vote_button.png" style="height:10px; width:8px" title="Vote!" alt="Vote!" /></a>'
  end
end
