
// Main section mouseover stuff
if (document.images) {
  image1on = new Image();
  image1on.src = "images/design/but_mem_b.jpg";

  image2on = new Image();
  image2on.src = "images/design/but_cen_b.jpg";

  image3on = new Image();
  image3on.src = "images/design/but_ball_b.jpg";

  image1off = new Image();
  image1off.src = "images/design/but_mem_a.jpg";

  image2off = new Image();
  image2off.src = "images/design/but_cen_a.jpg";

  image3off = new Image();
  image3off.src = "images/design/but_ball_a.jpg";

  otherImageDefault = new Image();
  otherImageDefault.src = "images/blank.gif";

  otherImage1 = new Image();
  otherImage1.src = "images/blank.gif";

  otherImage2 = new Image();
  otherImage2.src = "images/blank.gif";

  otherImage3 = new Image();
  otherImage3.src = "images/blank.gif";
}

function changeImages() {
  if (document.images) {
    for (var i=0; i<changeImages.arguments.length; i+=2) {
      document[changeImages.arguments[i]].src = eval(changeImages.arguments[i+1] + ".src");
    }
  }
}
// end main menu mouse overs

// sub menu bg thing
	function chgBg(obj,color){
	if (document.all || document.getElementById)
	  obj.style.backgroundColor=color;
	else if (document.layers)
	  obj.bgColor=color;
	}
	// -->
	
	function chgImg(obj,img){
		obj.src=img;
	}
	
	<!--
	function openWin( windowURL, windowName, windowFeatures ) { 
	return window.open( windowURL, windowName, windowFeatures ) ; 
	} 
// end sub menu thing


