def reorder
    (params[:cms_slide] || []).each_with_index do |id, index|
      if (cms_slide = Cms::Slide.find_by_id(id))
        cms_slide.update_attributes(:position => index)
      end