def limit_for_display(display)
limit = case display
when 'list' then 30
when 'portrait' then 30
when 'gallery' then 30
else 30
end
return limit
end