  var abort = 0;
  var overlays = new Array();
      overlays[0] = 'Iowa-Minnesota District v2.0';
      overlays[1] = 'iamndistrict.org.v2.png';
      overlays[2] = 'To celebrate the one-year anniversary of their ministry site, the IA-MN District of The Wesleyan Church wanted to redesign the entire thing to offer even more tools, information and resources.<br><br>With online traffic having increased five-fold since the announcement of their site in June 2005, however, they could not afford to have any downtime.<br><br>After laying out the redesign, I used my exclusive Molded Website Management Suite to simply change the site template. The new design was rolled out in a matter of seconds, rather than hours or even days.';

      overlays[3] = 'Iowa-Minnesota District v1.0';
      overlays[4] = 'iamndistrict.org.v1.png';
      overlays[5] = 'The IA-MN District of The Wesleyan Church needed a website for many reasons including the abilities to communicate district news and information, collaborate more effectively, and increase visibility to potential ministers.<br><br>With no experienced developers on staff, though, the IA-MN District needed a simple way to manage content and site administration.<br><br>Custom applications met their specific needs, and my exclusive Molded Website Management Suite tied it all together into a single, easy-to-use interface.';

      overlays[6] = 'Debra Heights Wesleyan';
      overlays[7] = 'dhwc.home.mchsi.com.png';
      overlays[8] = 'Debra Heights Wesleyan Church was a small congregation looking to provide important resources on the web. My exclusive Project Analysis worksheet showed them that a website could showcase their unique ministry offerings and solid Biblical teachings.<br><br>With a limited budget, though, there weren\'t any resources for an expensive design firm and elaborate hosting solution.<br><br>Working with DHWC, I was able to build a simple and attractive site that could be hosted on their ISP for free.';

  function toggleOverlay(which) // Defines and toggles the overlay panel.
           {
           if (abort) { return false; }
           var overlay,highlight;
           if (document.all)
                {
                overlay = document.all['overlay'];
                highlight = document.all['thumbnail'+which];
                overlay.style.left = 148;
                overlay.style.top = 70
                }
           else if (document.getElementById)
              {
              overlay = document.getElementById('overlay');
              highlight = document.getElementById('thumbnail'+which);
              }
           else
               {
               return false;
               }
           if ((overlay.style.visibility == 'hidden') || (overlay.style.visibility == ''))
              {
              overlay.innerHTML = '\<div class=overlayTitle\>'+overlays[(which*3)]+'\<\/div\>\<img class=overlayPic src=/images/portfolio/'+overlays[(which*3)+1]+'\>'+overlays[(which*3)+2];
              overlay.style.visibility = 'visible';
              highlight.style.backgroundColor = '#0000C4';
              }
           else
               {
               highlight.style.backgroundColor = '';
               overlay.style.visibility = 'hidden';
               }
           }

  function toggleAbort() // Toggles whether the toggleOverlay should respond or not.
           {
           if (abort)
              {
              abort = 0;
              }
           else
               {
               abort = 1;
               }
           return false;
           }