<!-- hide contents
<!-- frame buster starts here- code by Gordon McComb -->
setTimeout ("changePage()", 3000);

function changePage()
{
  if (self.parent.frames.length != 0)
  self.parent.location=document.location;
}
<!-- frame buster ends here -->
		
<!--  all other code by Jerry Nowak-->
var theLink = new Array();
theLink[0] = "index.html";	     		// Home page
theLink[1] = "about.html";	     		// About page
theLink[2] = "mission.html";	  		// Mission page
theLink[3] = "method.html";	  		// Method page
theLink[4] = "customers.html";  		// Customers page
theLink[5] = "specialty.html";  		// Specialty page
theLink[6] = "customize.html";  		// Customize page
theLink[7] = "courses.html";	  		// Courses page *not currently in use*
theLink[8] = "team.html";	     		// Team page
theLink[9] = "contact.html";	  		// Contact page
theLink[10] = "customerquotes.html";// Customer quotes
theLink[11] = "services.html";		// Services

function theHREF(i)
{
window.location=theLink[i];
}

var buton = new Array();
buton[0] = "images/but01on.gif";
buton[1] = "images/but01off.gif";
buton[2] = "images/but02on.gif";
buton[3] = "images/but02off.gif";
buton[4] = "images/but03on.gif";
buton[5] = "images/but03off.gif";
buton[6] = "images/but04on.gif";
buton[7] = "images/but04off.gif";
buton[8] = "images/but05on.gif";
buton[9] = "images/but05off.gif";
buton[10] = "images/but06on.gif";
buton[11] = "images/but06off.gif";
buton[12] = "images/but07on.gif";
buton[13] = "images/but07off.gif";
buton[14] = "images/but08on.gif";
buton[15] = "images/but08off.gif";
buton[16] = "images/but09on.gif";
buton[17] = "images/but09off.gif";
buton[18] = "images/but10on.gif";
buton[19] = "images/but10off.gif";
buton[20] = "images/but11on.gif";
buton[21] = "images/but11off.gif";

var pic = new Array();
for (var i = 0; i <= buton.length; i++) 
{
pic[i] = new Image();
pic[i].src = buton[i];
}


// end hiding contents -->
