I have a feedback form in my Rails application. The feedback form requires initializing of the @support variable, and it should be visible on every page. The initialization is very short:
@support = Support.new(:id => 1)
However it would be nice to have this variable initialized once and access it from everywhere. How is that possible to do?