Event.observe( window, 'load', function() {
     $('park').observe( 'click', function( e ) {
          Event.stop( e );
          var imgPath = this.getAttribute("id");
          imgPath = "images/gallery/floorplans/" + imgPath + ".jpg";
          $('bigImg').setStyle({background:'url(\'' + imgPath + '\') no-repeat'});
          $('l3').hide();
     } );
     $('first').observe( 'click', function( e ) {
          Event.stop( e );
          var imgPath = this.getAttribute("id");
          imgPath = "images/gallery/floorplans/" + imgPath + ".jpg";
          $('bigImg').setStyle({background:'url(\'' + imgPath + '\') no-repeat'});
          $('l3').hide();
     } );
     $('second').observe( 'click', function( e ) {
          Event.stop( e );
          var imgPath = this.getAttribute("id");
          imgPath = "images/gallery/floorplans/" + imgPath + ".jpg";
          $('bigImg').setStyle({background:'url(\'' + imgPath + '\') no-repeat'});
          $('l3').hide();
     } );
     $('third').observe( 'click', function( e ) {
          Event.stop( e );
          var imgPath = this.getAttribute("id");
          imgPath = "images/gallery/floorplans/" + imgPath + ".jpg";
          $('bigImg').setStyle({background:'url(\'' + imgPath + '\') no-repeat'});
          $('l3').show();
          $('l4').hide();
     } );
     $('lofts').observe( 'click', function( e ) {
          Event.stop( e );
          var imgPath = this.getAttribute("id");
          imgPath = "images/gallery/floorplans/" + imgPath + ".jpg";
          $('bigImg').setStyle({background:'url(\'' + imgPath + '\') no-repeat'});
          $('l4').show();
          $('l3').hide();
     } );
     $('unit302').observe( 'click', function( e ) {
          Event.stop( e );
          managePopup( true, $('unit302').id );
     } );
     $('unit308').observe( 'click', function( e ) {
          Event.stop( e );
          managePopup( true, $('unit308').id );
     } );
     $('unit309').observe( 'click', function( e ) {
          Event.stop( e );
          managePopup( true, $('unit309').id );
     } );
     $('unit310').observe( 'click', function( e ) {
          Event.stop( e );
          managePopup( true, $('unit310').id );
     } );
     $('unit315').observe( 'click', function( e ) {
          Event.stop( e );
          managePopup( true, $('unit315').id );
     } );
     $('unit302m').observe( 'click', function( e ) {
          Event.stop( e );
          managePopup( true, $('unit302m').id );
     } );
     $('unit308m').observe( 'click', function( e ) {
          Event.stop( e );
          managePopup( true, $('unit308m').id );
     } );
     $('unit309m').observe( 'click', function( e ) {
          Event.stop( e );
          managePopup( true, $('unit309m').id );
     } );
     $('unit310m').observe( 'click', function( e ) {
          Event.stop( e );
          managePopup( true, $('unit310m').id );
     } );
     $('unit315m').observe( 'click', function( e ) {
          Event.stop( e );
          managePopup( true, $('unit315m').id );
     } );
} );

