      if (!$) var $ = function(el) { return document.getElementById(el); }
      var images = new Array();
      
			function showindustry(num) {
       var theimage = $("industry-image");
       theimage.src = "/images/industries/industry_" + num + ".jpg";
      }
      
			var stopScroll = 0;
      var x = null;
      var boxHeight;
      var repeatHeight;
      
			function scrollMe() {
        clearTimeout(x);
        if(stopScroll == 1) return;
        var el = $('highlights');
        el.scrollTop += 1;
        if(el.scrollTop<=repeatHeight) { // keep on scrollin' 
          x = setTimeout("scrollMe()", 100);
        } else { //we have hit the wrap point
          el.scrollTop = 12;
          x = setTimeout("scrollMe()", 100);
        }
      }
      
			function init() {
        obj_high = $('highlights');
        boxHeight = obj_high.style.height.replace('px', '');
        repeatHeight = obj_high.scrollHeight; //get the current height so we know when to wrap
        obj_high.innerHTML += obj_high.innerHTML; //add a second copy so we can scroll down to the wrap point
        x = setTimeout("scrollMe()", 1000);
      }