var dimages=new Array();
  var numImages=5;

	dimages[0]=new Image();
	dimages[0].src="city_web.jpg";
	dimages[1]=new Image();
	dimages[1].src="military_web.jpg";  
	dimages[2]=new Image();
	dimages[2].src="consumer_web.jpg";  
	dimages[3]=new Image();
	dimages[3].src="sustainability_web.jpg";   
	
/* This next image needs to be the same as the one in the index file*/ 
	dimages[4]=new Image();
	dimages[4].src="lime_web.jpg"; 
	var curImage=-1;
	
function swapPicture()
{
	if (document.images){
    var nextImage=curImage+1;
    if (nextImage>=numImages)
       {
       nextImage=0;
       }
    if (dimages[nextImage] && dimages[nextImage].complete)
    {
      var target=0;
      if (document.images.myImage)
        {
        target=document.images.myImage;
        }
      if (document.all && document.getElementById("myImage"))
        {
        target=document.getElementById("myImage");
        }
      // make sure target is valid.  It might not be valid
      //   if the page has not finished loading
      if (target)
      {
        target.src=dimages[nextImage].src;
        curImage=nextImage;
      }
      setTimeout("swapPicture()", 7000);
	
	}
    else
    {
      setTimeout("swapPicture()", 7000);
    }
  }
}
setTimeout("swapPicture()", 7000);

var quote=new Array();
  quote[0]='We map technologies to find new opportunities';    /* add additional items - no limit */
  quote[1]='We develop technologies for demanding environments';
  quote[2]='We bring new ideas to market';
  quote[3]='Sustainable design is a core practice';
  quote[4]='We create new to the world products';							/* Should match the text in the html file*/

var speed=7000;    /*this is the time in milliseconds adjust to suit*/
var q=0;

function showQuote() {

	if(q==2){
		document.getElementById("main-point").innerHTML=quote[q];
	}else{
		document.getElementById("main-point").innerHTML=quote[q];
     }
	 q++;

	 if(q==quote.length) {
		q=0;
	}
}
setInterval('showQuote()',speed);

var content=new Array();
  content[0]='Does your business seek to exploit novel technologies to achieve success?  Lime Design can help you with technology strategy and market development. <br> <br> Our diverse team has experience managing technology development in many areas including novel materials, clean tech, and software.  <a href="http://www.bylimedesign.com/people.html">Read more about the team</a>.';    	
  content[1]='Have a tough application or market?  <br><br>We have you covered.  Our team has developed and deployed products and systems to the toughest of environments - the battlefield. <a href="http://www.bylimedesign.com/services.html">Read more about our services</a>.';
  content[2]='Need help pushing your product development process to be more successful? <br /><br /> Our modular design approach begins with a deep dive into customer needs. We transform these needs into product concepts, which are run through initial market testing.  Products are prepped for launch once the market positioning, brand strategy, and supply chain are finalized.';
  content[3]='Sustainability is tough to implement and to measure.  We can help you to streamline your product offerings and packaging to benefit by becomming more sustainible. ';
  content[4]='Lime Design is an experienced product design and marketing firm.  We specialize in bringing innovative new products and technologies to life. ';
							/* Should match the text in the html file*/
  

var speedcontent=7000;    /*this is the time in milliseconds adjust to suit*/
var c=0;

function showContent() {

	if(c==2){
		document.getElementById("main-content").innerHTML=content[c];
	}else{
		document.getElementById("main-content").innerHTML=content[c];
     }
	 c++;

	 if(c==content.length) {
		c=0;
	}
}
setInterval('showContent()',speedcontent);


