@theatres = Hash.new
@movie = MoviesClient.getMovie(params[:id])
@rating = MoviesClient.getRating(@movie.rating_id)
@showtimes = MoviesClient.getShowtimeByMovieAndLocation(@movie.id, params[:zip] )

for showtime in @showtimes do
  if !@theatres[showtime.theatre_id]
    @theatres[showtime.theatre_id] = MoviesClient.getTheatre(showtime.theatre_id)
  end
end
