/********** Watson Industries, Inc. JavaScript archive ***********/


/* Change Text of Element with Id "Img_hdr" */
function changeHdr(txt){
  document.getElementById("Img_hdr").innerHTML = "Watson Industries<br />"+ txt;}

/* Change Text of Element with Id "Img_text" */
function changeTxt(txt){
  document.getElementById("Img_text").innerHTML = txt;}
  
/* Open submenu */
function menuopen(topmenu,submenu,menuimage){
	topmenu.className="open";
	submenu.className="opened";
	topmenu.src="../images/open.bmp";
	topmenu.alt="-";
}

/* Close submenu */
function menuclose(topmenu,submenu,menuimage){
	topmenu.className="close";
	submenu.className="closed";
	topmenu.src="../images/closed.bmp";
	topmenu.alt="+";
}



