// JavaScript Document
$(function(){

  var n=1;
  var slideFile=["image1","image2","image3"];
//var texts=["We focus on challenging and high-impact projects where we can use our innovative approaches to solve problems and really make a difference.","Some other text.","Still other text."];
  
  var int=self.setInterval(flipSlide,5000);
  
  function flipSlide() {
    n++;
    $("#overslide").fadeOut("slow",function(){
      $(this).attr({ src: $("#underslide").attr("src") }).show();
      $("#underslide").attr({ src: "img/"+slideFile[n%slideFile.length]+".jpg" });
//    $("#upper p").html(texts[n%slideFile.length]);
    });
  }
  
  $("#mainmenu div").hover(function(){
    $(this).addClass("lit");
  },function(){
    $(this).removeClass("lit");
  });

});
