<!--


	if(document.images){
		mouseOverArray = new Array();
		// preload image 1
		mouseOverArray["nav-home_off"] = new Image(150, 29);
		mouseOverArray["nav-home_off"].src = "img/nav-home_off.gif";
		mouseOverArray["nav-home_on"] = new Image(150, 29);
		mouseOverArray["nav-home_on"].src = "img/nav-home_over.gif";
		mouseOverArray["nav-home_text"] = "Home";
		// preload image 2
		mouseOverArray["nav-history_off"] = new Image(150, 26);
		mouseOverArray["nav-history_off"].src = "img/nav-history_off.gif";
		mouseOverArray["nav-history_on"] = new Image(130, 26);
		mouseOverArray["nav-history_on"].src = "img/nav-history_over.gif";
		mouseOverArray["nav-history_text"] = "Company History";
		// preload image 3
		mouseOverArray["nav-experience_off"] = new Image(150, 27);
		mouseOverArray["nav-experience_off"].src = "img/nav-experience_off.gif";
		mouseOverArray["nav-experience_on"] = new Image(150, 27);
		mouseOverArray["nav-experience_on"].src = "img/nav-experience_over.gif";
		mouseOverArray["nav-experience_text"] = "Our Experience";
		// preload image 4
		mouseOverArray["nav-textures_off"] = new Image(150, 27);
		mouseOverArray["nav-textures_off"].src = "img/nav-textures_off.gif";
		mouseOverArray["nav-textures_on"] = new Image(150, 27);
		mouseOverArray["nav-textures_on"].src = "img/nav-textures_over.gif";
		mouseOverArray["nav-textures_text"] = "Stucco Textures";
		// preload image 5
		mouseOverArray["nav-contact_off"] = new Image(150, 26);
		mouseOverArray["nav-contact_off"].src = "img/nav-contact_off.gif";
		mouseOverArray["nav-contact_on"] = new Image(150, 26);
		mouseOverArray["nav-contact_on"].src = "img/nav-contact_over.gif";
		mouseOverArray["nav-contact_text"] = "Contact Us";
		
	}
	function doMouseOver( imgName, state ) {
		// performs mouseover image and status bar text swapping
		// imgName is the HTML image name specified in the <img> tag
		// state must be on, off or down
			// hide from browsers that don't support the image object
			if ( !document.images )
				return false;
		// replace image
		document.images[ imgName ].src = mouseOverArray[ imgName + "_" + state ].src;
		// if needed, display or clear the status bar text
		if ( mouseOverArray[ imgName + "_text" ] != "" ) {
			if ( state != "off" ) {
				window.status = mouseOverArray[ imgName + "_text" ];
				return true; //supresses display of link URL in on MouseOver
			} else {
				window.status = "";
				return false;
			}
		}
		return false;
	}

function getcopyYearStr() {
	var Today = new Date();
	var Year = Today.getFullYear();
	if (Year != 2004) {
		return " - " + Year;
	} else {
		return "";
	}	
}

var currentdate = 0
var core = 0

function StringArray (n) {
  this.length = n;
  for (var i =1; i <= n; i++) {
    this[i] = ' '

  }
}

// Set slideShowSpeed (milliseconds)
var slideShowSpeed = 5000

// Duration of crossfade (seconds)
var crossFadeDuration = 3

// Specify the image files
var Pic = new Array() // don't touch this
// to add more images, just continue
// the pattern, adding to the array below

Pic[0] = './photos/meadowbrook01-sm.jpg'
Pic[1] = './photos/house02-sm.jpg'
Pic[2] = './photos/karate01-sm.jpg'
Pic[3] = './photos/towncentre01-sm.jpg'
Pic[4] = './photos/feature01-sm.jpg'
Pic[5] = './photos/bernard04-sm.jpg'
Pic[6] = './photos/brookshire04-sm.jpg'

// =======================================
// do not edit anything below this line
// =======================================

var t
var j = 0
var p = Pic.length

var preLoad = new Array()
for (i = 0; i < p; i++){
   preLoad[i] = new Image()
   preLoad[i].src = Pic[i]
}

function runSlideShow(){
   if (document.all){
      document.images.SlideShow.style.filter="blendTrans(duration=2)"
      document.images.SlideShow.style.filter="blendTrans(duration=crossFadeDuration)"
      document.images.SlideShow.filters.blendTrans.Apply()      
   }
   document.images.SlideShow.src = preLoad[j].src
   if (document.all){
      document.images.SlideShow.filters.blendTrans.Play()
   }
   j = j + 1
   if (j > (p-1)) j=0
   t = setTimeout('runSlideShow()', slideShowSpeed)
}

// -->