Find <%= Spree::Config[:site_name] %> at the following retail locations:
<% retailers.group_by(&:country).each do |country, country_retailers| %>
<%= country %>
<% if country == "United States" %>
<%= state_nav_helper(country_retailers) %>
<% end %>
<% country_retailers.group_by(&:state).each do |state, state_retailers| %>
<%= @states[state] %>
<%= render :partial => 'retailer', :collection => state_retailers %>
<% end %>
<% end %>
<% end %>