<!DOCTYPE html>
<!--[if lt IE 7]> <html class="ie6 no-js"> <![endif]-->
<!--[if IE 7]>    <html class="ie7 no-js"> <![endif]-->
<!--[if IE 8]>    <html class="ie8 no-js"> <![endif]-->
<!--[if IE 9]>    <html class="ie9 no-js"> <![endif]-->
<!--[if !IE]><!-->
<html class="no-js">
  <!--<![endif]-->
  <head>
    <meta charset="utf-8">
    <meta content="width=device-width, initial-scale=1" name="viewport">
    <title>Chief Drive-In in Grand Junction, CO - Cinema Treasures</title>
    <meta content='The Chief Drive-In opened on March 21, 1952 with Gary Cooper in "Distant Drums". It ran every year until its closure on September 4, 1989 with "Sta...' name="description">
    <meta content="IE=edge,chrome=1" http-equiv="X-UA-Compatible">
  
    <script src="//use.typekit.com/voa4cfk.js" type="text/javascript"></script>
    <script>
      //<![CDATA[
        try{Typekit.load();}catch(e){}
      //]]>
    </script>
    <script async="" src="//www.googletagmanager.com/gtag/js?id=UA-2710707-1"></script>
    <script>
      //<![CDATA[
        window.dataLayer = window.dataLayer || [];
        function gtag(){dataLayer.push(arguments);}
        gtag('js', new Date());
        gtag('config', 'UA-2710707-1');
      //]]>
    </script>
    <script src="//ajax.googleapis.com/ajax/libs/jquery/1.5.1/jquery.min.js" type="text/javascript"></script>
    <script src="//cdn.apple-mapkit.com/mk/5.x.x/mapkit.js" type="text/javascript"></script>
    <script src="/assets/common.js?1689714942" type="text/javascript"></script>
    <script>
        //<![CDATA[
          $(document).ready(function () {
        
            // Setup global pano variable
            // so we can keep track of pano
            // window.pano = '';
        
            // Functions
            function color() {
              status = $("#map").attr("data_status");
              if (status == 'open') {
                color = '#38B257';
              } else {
                color = '#A3121B';
              }
              return color;
            }
        
            function name() {
              return $("#map").attr("data_name")
            }
        
            function latitude() {
              var latitude = parseFloat($("#map").attr("data_latitude"))
              return latitude;
            }
        
            function longitude() {
              var longitude = parseFloat($("#map").attr("data_longitude"))
              return longitude;
            }
        
            // function update_position() {
            //   position = pano.getPosition().lat() + ", " + pano.getPosition().lng();
            //   console.log("New location: " + position);
            //   $('#theater_custom_geolocation').attr("value", position);
            // }
            //
            // function update_pov() {
            //   pov = pano.getPov().heading + "," + pano.getPov().pitch;
            //   console.log("New pov: " + pov);
            //   $('#theater_custom_pov').attr("value", pov);
            // }
        
            // function load_streetview() {
            //   $("#streetview").show();
            //
            //   // Custom street view options
            //   if ($('#streetview').attr("data-custom-pov") != '') {
            //
            //     // Grab saved values
            //     var saved_geolocation = $('#streetview').attr("data-custom-geolocation").split(',');
            //     var custom_latitude = saved_geolocation[0];
            //     var custom_longitude = saved_geolocation[1];
            //     var saved_pov = $('#streetview').attr("data-custom-pov").split(',');
            //     var custom_heading = parseInt(saved_pov[0]);
            //     var custom_pitch = parseInt(saved_pov[1]);
            //
            //     // Assemble options
            //     var point = new google.maps.LatLng(custom_latitude, custom_longitude);
            //     var panoramaOptions = {
            //       position: point,
            //       pov: {
            //         heading: custom_heading,
            //         pitch: custom_pitch
            //       },
            //       zoom: 1
            //     };
            //
            //   // Default street view options
            //   } else {
            //
            //     var point = new google.maps.LatLng(latitude(), longitude());
            //     var panoramaOptions = {
            //       position: point,
            //       zoom: 1
            //     };
            //
            //   }
            //
            //   // Load streetview
            //   pano = new google.maps.StreetViewPanorama(document.getElementById('streetview'), panoramaOptions);
            //   pano.setVisible(true);
            //
            //   // Watch streetview for pov and position changes
            //   google.maps.event.addListener(pano, "pov_changed", function() {
            //      var info = pano.getPov();
            //      console.log(info['pitch']);
            //      console.log(info['heading']);
            //
            //      update_pov();
            //   });
            //   google.maps.event.addListener(pano, "links_changed", function() {
            //     update_position();
            //   });
            //
            // }
        
            // Toggle photo/street view
            // $('#photo_link').click(function() {
            //   $("#photo").show();
            //   $("#streetview").hide();
            //   $("#update_streetview").hide();
            //   $('#photo_link').addClass('hide_link');
            //   $('#streetview_link').removeClass('hide_link');
            // });
            // $('#streetview_link').click(function() {
            //   $("#photo").hide();
            //   load_streetview();
            //   $("#update_streetview").animate({opacity:"1"}, 1000).slideDown();
            //   $("#photo").hide();
            //   $('#photo_link').removeClass('hide_link');
            //   $('#streetview_link').addClass('hide_link');
            // });
        
            // Ajax form for updating street view
            // $('#update_streetview').ajaxForm(function() {
            //     alert("Thanks for updating this street view!");
            //     $('#update_streetview').slideUp();
            //     if ($('#photo_link').length) {
            //       $('#photo_link').click(function() {
            //         location.reload();
            //       });
            //     }
            // });
        
            // Hide photo link if unavailable
            // if ($('#photo').length == 0) {
            //   $('#photo_link').hide();
            //   $('.divider').hide();
            //   load_streetview();
            //   $("#update_streetview").show();
            //   $('#streetview_link').hide();
            // }
        
            // Hide street view if unavailable
            // if ($('#streetview').attr("data-custom-pov") != '') {
            //   var saved_geolocation = $('#streetview').attr("data-custom-geolocation").split(',');
            //   var custom_latitude = saved_geolocation[0];
            //   var custom_longitude = saved_geolocation[1];
            //   var point = new google.maps.LatLng(custom_latitude, custom_longitude);
            // } else {
            //   var point = new google.maps.LatLng(latitude(), longitude());
            // }
            // var streetview = new google.maps.StreetViewService();
            // streetview.getPanoramaByLocation(point, 50, function(data, status) {
            //   if (status != 'OK') {
            //     $('#map_navigation').hide();
            //     $('#update_streetview').hide();
            //     $('#streetview').hide();
            //   }
            // });
        
            // Favorites
            if ($("#links a").attr("href").match(/members/)) {
              if ($("#favorite img").attr("src").match(/unfavorite/)) {
                $("#favorite img").hover(
                  function () {
                    $("#favorite img").attr("src", '/images/app/favorite.png');
                    $("#favorite span").hide();
                    $("#favorite em").html("Add this theater to your favorites");
                    $("#favorite em").show();
                  },
                  function () {
                    $("#favorite img").attr("src", '/images/app/unfavorite.png');
                    $("#favorite span").show();
                    $("#favorite em").hide();
                  }
                );
              } else {
                $("#favorite img").hover(
                  function () {
                    $("#favorite img").attr("src", '/images/app/unfavorite.png');
                    $("#favorite span").hide();
                    $("#favorite em").html("Remove theater from your favorites");
                    $("#favorite em").show();
                  },
                  function () {
                    $("#favorite img").attr("src", '/images/app/favorite.png');
                    $("#favorite span").show();
                    $("#favorite em").hide();
                  }
                );
              }
            } else {
              $("#favorite img").hover(
                function () {
                  $("#favorite img").attr("src", '/images/app/favorite.png');
                  $("#favorite span").hide();
                  $("#favorite em").html("Login to favorite this theater");
                  $("#favorite em").show();
                },
                function () {
                  $("#favorite img").attr("src", '/images/app/unfavorite.png');
                  $("#favorite span").show();
                  $("#favorite em").hide();
                }
              );
            }
        
            // Load MapKit JS
            mapkit.init({
            authorizationCallback: function(done) {
              done("eyJraWQiOiJIMzZNUjdENDYyIiwiYWxnIjoiRVMyNTYifQ.eyJpc3MiOiI5OVhYUDJXRjM4IiwiaWF0IjoxNjg1ODExNzg0LCJleHAiOjE3MTczNDc3ODR9.q6BWkaUAiSj_mmDYgRxFjcAEFAxxt1V9--3QZmjM3uNmbcTRA5HigzdPzAOUGdh63NhoJFqgwUkniZiWTztA9A");
            }
          });
        
            // Set region size
            var region = new mapkit.CoordinateRegion(
              new mapkit.Coordinate(latitude(), longitude()),
              new mapkit.CoordinateSpan(0.004, 0.004)
            );
        
            // Create map
            let map = new mapkit.Map("map", {
              center: new mapkit.Coordinate(latitude(), longitude()),
              region: region
            });
        
            // Create map marker
            const coordinates = new mapkit.Coordinate(latitude(), longitude())
            const annotation = new mapkit.MarkerAnnotation(coordinates, {
              color: color(),
              title: name(),
              glyphImage: {
                1: "/apple-touch-icon.png"
              }
            })
        
            // Add map marker to map
            map.addAnnotation(annotation)
        
          });
        //]]>
      </script>
    <link href="/stylesheets/app.css?1689714942" media="all" rel="stylesheet" type="text/css" />
  
  </head>
  <body class="theaters show" lang="en">
    <div id="wrap">
      <div id="header">
        <div id="stars"></div>
        <div id="primary">
          <a href="/"><img alt="Cinema Treasures" height="88" id="logo" src="/images/app/logo.png?1689714942" width="218" /></a>
          <div id="links">
            <a href="/login?return_to=https%3A%2F%2Fwww.cinematreasures.org%2Ftheaters%2F46778">Login</a> or
            <a href="/signup">Sign up</a>
          </div>
          <nav>
            <ul>
              <li><a href="/">Home</a></li>
              <li><a href="/theaters">Theaters</a></li>
              <li><a href="/photos">Photos</a></li>
              <li><a href="/video">Video</a></li>
              <li><a href="/blog">Blog</a></li>
              <li><a href="/about">About</a></li>
            </ul>
          </nav>
        </div>
        <div id="secondary">
          <span>
            <div id="slogan">Your guide to movie theaters</div>
            <div id="search_bar">
              <form action="/theaters" method="get">
                <input id="query" name="q" placeholder="Search by Movie Theater, City, or Zipcode" type="text" />
                <input name="" type="submit" value="Search" />
              </form>
            </div>
          </span>
        </div>
      </div>
      <div id="page">
        <div id="content">
          <div id="leaderboard">
            <script async="" src="//pagead2.googlesyndication.com/pagead/js/adsbygoogle.js"></script>
            <ins class="adsbygoogle" data-ad-client="ca-pub-4430601922741422" data-ad-slot="6230392620" style="display:inline-block;width:970px;height:90px"></ins>
            <script>
              //<![CDATA[
                (adsbygoogle = window.adsbygoogle || []).push({});
              //]]>
            </script>
          </div>
          <div id="breadcrumb">
            <ul>
              <li><a href="/theaters">Movie Theaters</a></li>
              <li><a href="/theaters/united-states">United States</a></li>
              <li><a href="/theaters/united-states/colorado">Colorado</a></li>
              <li><a href="/theaters/united-states/colorado/grand-junction">Grand Junction</a></li>
              <li><a href="/theaters/46778">Chief Drive-In</a></li>
            </ul>
          </div>
          <h1>Chief Drive-In</h1>
          <h2 id="address">
            <div class="adr">
              <div class="street-address">2868 North Avenue,</div>
              <span class="locality">
                Grand Junction,
              </span>
              <span class="region">CO</span>
              <span class="postal-code">81501</span>
            </div>
          </h2>
          <div id="facts">
            <div class="fact red"><a href="/theaters?status=closed">Closed</a></div>
            <div class="fact"><a href="/theaters?status=demolished">Demolished</a></div>
            <div class="fact"><a href="/screens/1">1 screen</a></div>
            <div class="fact">460 cars</div>
          </div>
          <p id="favorite">
            <img alt="Unfavorite" height="22" src="/images/app/unfavorite.png?1689714942" title="Login to favorite this theater" width="23" />
            <span>
              2 people
              favorited this theater
            </span>
            <em></em>
          </p>
          <ul class="tabs">
            <li class="active"><a href="/theaters/46778">Overview</a></li>
            <li><a href="/theaters/46778/photos">Photos</a></li>
            <li><a href="/theaters/46778/comments">Comments</a></li>
          </ul>
          <div id="theater">
            <div class="vcard" id="stats">
              <div data_latitude="39.0774058" data_longitude="-108.5222174" data_name="Chief Drive-In" data_status="closed" id="map">
                <div class="location"></div>
              </div>
              <div id="view_larger_map">
                <a href="/theaters/46778/map">View larger map &rarr;</a>
              </div>
              <div class="adsense">
                <script async="" src="//pagead2.googlesyndication.com/pagead/js/adsbygoogle.js"></script>
                <ins class="adsbygoogle" data-ad-client="ca-pub-4430601922741422" data-ad-slot="5812031164" style="display:inline-block;width:300px;height:250px"></ins>
                <script>
                  //<![CDATA[
                    (adsbygoogle = window.adsbygoogle || []).push({});
                  //]]>
                </script>
              </div>
              <h3>Additional Info</h3>
              <p>
                <strong>Previously operated by:</strong>
                <a href="/chains/603/previous">Commonwealth Theatres</a>, <a href="/chains/164/previous">United Artists Theater Circuit Inc.</a>, <a href="/chains/882/previous">Westland Theaters Inc.</a>
              </p>
              <h3>Nearby Theaters</h3>
              <ul id="nearby_theaters">
                <li>
                  <a href="/theaters/46779"><img alt="Tiny" height="24" src="https://photos.cinematreasures.org/production/photos/108649/1410834808/tiny.png?1410834808" width="24" /></a>
                  <a href="/theaters/46779">Rocket Drive-In</a>
                </li>
                <li>
                  <a href="/theaters/46780"><img alt="Tiny" height="24" src="https://photos.cinematreasures.org/production/photos/108641/1410833502/tiny.JPG?1410833502" width="24" /></a>
                  <a href="/theaters/46780">Teller Arms Twin Cinema</a>
                </li>
                <li>
                  <a href="/theaters/27793"><img alt="Tiny" height="24" src="https://photos.cinematreasures.org/production/photos/108633/1410832836/tiny.png?1410832836" width="24" /></a>
                  <a href="/theaters/27793">Starlite Drive-In</a>
                </li>
                <li>
                  <a href="/theaters/14350"><img alt="Tiny" height="24" src="https://photos.cinematreasures.org/production/photos/159833/1456355226/tiny.jpg?1456355226" width="24" /></a>
                  <a href="/theaters/14350">Avalon Theatre</a>
                </li>
                <li>
                  <a href="/theaters/29497"><img alt="Tiny" height="24" src="https://photos.cinematreasures.org/production/photos/93396/1390731325/tiny.PNG?1390731325" width="24" /></a>
                  <a href="/theaters/29497">Mesa Theatre</a>
                </li>
              </ul>
            </div>
            <div id="photo">
              <a href="/theaters/46778/photos"><img src="https://photos.cinematreasures.org/production/photos/108222/1410323863/large.jpg?1410323863" width="640" height="445" alt="Concession Stand/Booth (1989)" /></a>
            </div>
            <div id="description">
              <p>The Chief Drive-In opened on March 21, 1952 with Gary Cooper in &ldquo;Distant Drums&rdquo;. It ran every year until its closure on September 4, 1989 with &ldquo;Star Trek V&rdquo; &amp; &ldquo;Indiana Jones and the Last Crusade&rdquo;. It was Grand Junction&rsquo;s second drive-in, operated the most seasons and was the last to close forever.</p>
            
              <p>It was built by Westland Theatres (of Colorado Springs) to complement their other hard-top offerings in Grand Junction. It was located on an 8.3 acre parcel on the north side of street with access directly off North Avenue.  The entrance and exit lanes were separated by a grassed north-south median directly behind the sign. The neon and fluorescently illuminated sign was fashioned in the shape of an Indian head with an integral marquee behind the Chief&rsquo;s head. The screen was at the far north end of the field and faced south. The concession stand and booth were located in a two story cinder block building in the middle of the field. The concession stand and restrooms were on the ground floor with the booth on the second floor. Initially there was a playground at the front of the field near the screen. It was moved to behind the concession stand but then later removed altogether. The lot was gravelled with graded ramps.</p>
            
              <p>Projection was initially via two Simplex XL projectors illuminated by Peerless Magnarc carbon arc lamp houses driven by a large Hertner TransVerter. Sound was delivered by Simplex sound heads via Simplex tube amplifiers.  The field was wired with Simplex poles, domes and speakers. In 1979 the system was automated. The right projector was removed and in its place a Drive-In Theatre Mfg. platter system was installed. Illumination was updated to a Xetron lamp house. The sound head was updated to a solar cell system, replacing the old tube photocell pickup. Over time most of the original Simplex speakers were replaced with cast aluminum Reed boxes and the ramp light domes replaced with Reed caps and translucent white, green or red rings (depending upon their location on the field).</p>
            
              <p>The Chief Drive-In closed with little fanfare. It was merely shuttered after the 1989 season and not started back up. This was due to the very expensive improvements necessary to update the property. The primary problem was the field wiring was shot. The 1952 vintage rubber covered wire was shorting out and the sound quality at the speakers was terrible especially if it rained. Updating to an AM radio transmitter was considered on a trial basis but this too proved impossible as the system still needed most of field wiring to be serviceable. Upon that assessment UA threw in the towel on re-opening the theatre. They opted to use the booth and concession stand for storage for the next few years while they mulled their options. In 1991 United Artist Theatres opted to not renew their lease of the property from Arcadia Investments of Colorado Springs (owned by L.J. Sizemore and the successor to Westland&rsquo;s property division). Since UA owned the equipment, they stripped it when the lease terminated thus effectively killing the property as a theatre.</p>
            
              <p>In the mid-1990&rsquo;s Arcadia demolished the building and other improvements on the property to save on taxes and make it more marketable as vacant land. Like the location of most drive-in theatres, the area had grown up around it and the property was much more valuable as developable vacant commercial land than as a theatre. The parcel was later purchased by Colorado West health services for their campus.</p>
              <div id="contributors">
                Contributed by
                Nick Genova
              </div>
            </div>
            <div id="tickets">
              <a href="http://www.kqzyfj.com/click-8793702-10504407">Get Movie Tickets & Showtimes</a>
            </div>
            <div class="adsense">
              <script type="text/javascript"><!--
              google_ad_client = "pub-4430601922741422";
              <!-- * v2 Theater Pages 336x280 */ -->
              google_ad_slot = "0787365998";
              google_ad_width = 336;
              google_ad_height = 280;
              <!-- /--> -->
              </script>
              <script type="text/javascript"
              src="//pagead2.googlesyndication.com/pagead/show_ads.js">
              </script>
            </div>
            <div id="comments">
              <h2>
                Recent comments
                <a href="/theaters/46778/comments">(view all 6 comments)</a>
              </h2>
              <div class="comment even">
                <div class="avatar"><a href="/members/hispeed54"><img alt="Drive-In 54" height="48" src="https://photos.cinematreasures.org/production/users/52059/1506345709/small.jpg?1506345709" width="48" /></a></div>
                <div class="body">
                  <strong><a href="/members/hispeed54">Drive-In 54</a></strong>
                  <span>on</span>
                  <a href="#comment-548527" name="comment-548527">September 10, 2014 at  1:13 am</a>
                  <p>There was Rocket DI also. I have some information on that one also. It is on my to do list to get it added,</p>
                </div>
              </div>
              <div class="comment odd">
                <div class="avatar"><a href="/members/rivest266"><img alt="rivest266" height="48" src="https://photos.cinematreasures.org/production/users/1477/1307916355/small.jpg?1307916355" width="48" /></a></div>
                <div class="body">
                  <strong><a href="/members/rivest266">rivest266</a></strong>
                  <span>on</span>
                  <a href="#comment-658872" name="comment-658872">March 24, 2019 at  6:15 pm</a>
                  <p>This opened on March 21st, 1952.
                  <a href="https://www.newspapers.com/clip/29866529/chief_drivein_opening/" style="text-decoration: none;display:block;" target="_parent"><img src="https://img.newspapers.com/img/img?id=535873332&width=700&height=823&crop=38_94_4837_6752&rotation=0&brightness=0&contrast=0&invert=0&ts=1553450815&h=f5d938362bebe2e783952b45f2f22bed" alt="Chief Drive-In opening" style="max-width:100%;"><span style="display:block;font: 13px helvetica, sans-serif; color: #747474;padding: 4px 0;max-width: 700px;"><strong>Chief Drive-In opening</strong>  Fri, Mar 21, 1952 &ndash; 5 &middot; <em>The Daily Sentinel (Grand Junction, Colorado)</em> &middot; Newspapers.com</span></a></p>
                </div>
              </div>
              <div class="comment even">
                <div class="avatar"><a href="/members/michaelkilgore"><img alt="MichaelKilgore" height="48" src="https://photos.cinematreasures.org/production/users/79220/1476392457/small.png?1476392457" width="48" /></a></div>
                <div class="body">
                  <strong><a href="/members/michaelkilgore">MichaelKilgore</a></strong>
                  <span>on</span>
                  <a href="#comment-671704" name="comment-671704">December  6, 2019 at  9:40 pm</a>
                  <p>Two years in the making? <a href="http://www2.boxoffice.com/the_vault/issue_page?issue_id=1950-4-15&page_no=57#page_start">Boxoffice</a>, April 15, 1950: &ldquo;GRAND JUNCTION, COLO. &ndash; T. B. Noble jr., general manager of the Westland Theatre Corp, says his firm will build a new drive-in on North avenue here. It will accommodate 600 cars.&rdquo;</p>
                </div>
              </div>
              <div class="comment odd">
                <div class="avatar"><a href="/members/michaelkilgore"><img alt="MichaelKilgore" height="48" src="https://photos.cinematreasures.org/production/users/79220/1476392457/small.png?1476392457" width="48" /></a></div>
                <div class="body">
                  <strong><a href="/members/michaelkilgore">MichaelKilgore</a></strong>
                  <span>on</span>
                  <a href="#comment-675966" name="comment-675966">March 12, 2020 at  8:42 pm</a>
                  <p>The Chief&rsquo;s final night was Labor Day, Sept. 4, 1989, showing &ldquo;Star Trek V&rdquo; and &ldquo;Indiana Jones and the Last Crusade.&rdquo; The next day, its section of the United Artists theater ad said simply &ldquo;Closed.&rdquo;</p>
                </div>
              </div>
              <div class="comment even">
                <div class="avatar"><a href="/members/michaelkilgore"><img alt="MichaelKilgore" height="48" src="https://photos.cinematreasures.org/production/users/79220/1476392457/small.png?1476392457" width="48" /></a></div>
                <div class="body">
                  <strong><a href="/members/michaelkilgore">MichaelKilgore</a></strong>
                  <span>on</span>
                  <a href="#comment-682364" name="comment-682364">July 24, 2020 at  4:53 pm</a>
                  <p>I can&rsquo;t find any evidence that the Chief showed movies at any time before its Grand Opening on March 21, 1952. rivest266 has the ad from that day&rsquo;s Daily Sentinel, and here&rsquo;s what it looked like the day before:</p>
                
                  <p><a href="https://www.newspapers.com/clip/55977518/chief-drive-in-pre-grand-opening/" style="text-decoration: none;display:block;" target="_parent"><img src="https://img.newspapers.com/img/thumbnail/535873251/400/300/183_3772_4724_2991.jpg" alt="Chief Drive-In pre-Grand Opening" style="max-width:100%;"><span style="display:block;font: 13px helvetica, sans-serif; color: #747474;padding: 4px 0;max-width: 400px;"><strong>Chief Drive-In pre-Grand Opening</strong>  Thu, Mar 20, 1952 &ndash; 2 &middot; <em>The Daily Sentinel (Grand Junction, Colorado)</em> &middot; Newspapers.com</span></a></p>
                
                  <p>Note that the opening program was &ldquo;Distant Drums&rdquo; with Gary Cooper, the short &ldquo;Charlie McCarthy and Mortimer Snerd in Sweden,&rdquo; and a Cartoon Carnival.</p>
                </div>
              </div>
              <div class="comment odd">
                <div class="avatar"><a href="/members/nrgenova"><img alt="Nick" height="48" src="https://photos.cinematreasures.org/production/users/71853/1410138936/small.jpg?1410138936" width="48" /></a></div>
                <div class="body">
                  <strong><a href="/members/nrgenova">Nick</a></strong>
                  <span>on</span>
                  <a href="#comment-697716" name="comment-697716">May 29, 2021 at 12:58 pm</a>
                  <p>To clarify, there was some form of a &ldquo;soft opening&rdquo; on March 20, 1952. I learned this from personal conversations I had in the early 1980s with the original projectionist and other staff. Officially, yes, the Grand Gala Opening was on Friday the 21st. The Thursday &ldquo;opening&rdquo; was a trial run to make sure everything was working and ready. Whether it was a paying even, I have no idea and my original source has long since passed away.</p>
                </div>
              </div>
            </div>
            <form action="/theaters/46778/comments" class="new_comment" id="new_comment" method="post"><div style="margin:0;padding:0;display:inline"><input name="authenticity_token" type="hidden" value="qYuXbgHm2fXo+sDsVOtdnS+oIbCiTZ/ghPHp4GRc96s=" /></div>
              <div id="login_prompt">
                You must
                <a href="/login?return_to=https%3A%2F%2Fwww.cinematreasures.org%2Ftheaters%2F46778">login</a>
                before making a comment.
              </div>
              <h2>New Comment</h2>
              <p>
                <textarea cols="40" disabled="disabled" id="comment_body" name="comment[body]" rows="5"></textarea>
              </p>
              <div class="tips">
                <ul>
                  <li>Contribute something to the conversation</li>
                  <li>No personal attacks</li>
                  <li>Stay on-topic</li>
                  <li class="link"><a href="/community">Please read our community guidelines before posting &rarr;</a></li>
                </ul>
              </div>
              <p>
                <input disabled="disabled" id="comment_submit" name="commit" type="submit" value="Add Comment" />
              </p>
            </form>
            <div id="subscriptions">
              <img alt="Subscribe" height="32" src="/images/app/subscribe.gif?1689714942" width="48" />
              Want to be emailed when a new comment is posted about this theater?
              <br>
              Just
              <a href="/session/new">login to your account</a>
              and subscribe to this theater.
            </div>
          </div>
          <br class="clear">
        </div>
      </div>
    </div>
    <footer>
      <span>
        <div id="social">
          <div class="service"><a href="http://www.facebook.com/pages/Cinema-Treasures/206217392742703"><img alt="Facebook" src="/images/icons/facebook.png?1689714942" /></a></div>
          <div class="service"><a href="http://twitter.com/movie_theaters"><img alt="Twitter" src="/images/icons/twitter.png?1689714942" /></a></div>
          <div class="service"><a href="http://feeds.feedburner.com/cinematreasures"><img alt="Feed" src="/images/icons/feed.png?1689714942" /></a></div>
        </div>
        <div id="sitemap">
          <h3>Roger Ebert on Cinema Treasures:</h3>
          <p>&ldquo;The ultimate web site about movie theaters&rdquo;</p>
        </div>
        <div id="credits">
          <a href="/"><img alt="Cinema Treasures" height="68" src="/images/app/logo_footer.png?1689714942" width="200" /></a>
        </div>
        <div id="terms">
          Cinema Treasures, LLC
          &copy; 2000 -
          2023.
          Cinema Treasures is a registered trademark of Cinema Treasures, LLC.
          <a href="/privacy">Privacy Policy</a>.
          <a href="/terms">Terms of Use</a>.
        </div>
      </span>
    </footer>
    <script>
      //<![CDATA[
        try {
          var _gaq = _gaq || [];
          _gaq.push(['_setAccount', 'UA-2710707-1']);
          _gaq.push(['_trackPageview']);
      
          (function() {
            var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
            ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
            var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
          })();
        } catch(err) {
        }
      //]]>
    </script>
  </body>
</html>
