#### View snip ####		
<%= render :partial => 'episode' , :collection => @podcast %>

#### _episode.rhtml ####

      
<%=check_box_tag episode.id, 1, ("checked" if episode.selected == 1), :onclick => remote_function(:update => "selectioncounter", :url => {:action => :selected, :id => episode.id} , :submit => episode.id , :loading => "Element.show('loading')", :complete => "Element.hide('loading')")%>   <%= link_to "#{episode.title}" , :action => 'show', :id => episode %>     <%= episode.date.strftime("%m/%d/%Y") if episode.date%>   <%= link_to 'Edit', :action => 'edit', :id => episode %> | <%= link_to 'Destroy', { :action => 'destroy', :id => episode }, :confirm => 'Are you sure?', :post => true %> <%= link_to_remote "Highlight me!", :url => admin_url(:action => 'highlight', :id => episode.id) %>