Link_to_remote question

I’m trying to get some ajax stars on my website to update. The CSS code
I have in place expects to put URL’s like this:

  1. 1
  2. 2
  3. 3
  4. 4
  5. 5

I’m trying to use link_to_remote to do the above:

  1. <%= link_to_remote ("", :update => "stars", :url =>{ :action => :vote, :id => 1, :store => @store.id}, :class => 'one-star', :name => 'Terrible') %>

I have one link_to_remote for each of my star classes but it doesn’t
seem to work. Can anyone help me understand what I’m doing wrong?