

	home1 = new Image();
	home1.src = "/images/redesign/images/home1.png";
	home2 = new Image();
	home2.src = "/images/redesign/images/home2.png";
	about1 = new Image();
	about1.src = "/images/redesign/images/about1.png";
	about2 = new Image();
	about2.src = "/images/redesign/images/about2.png";
	corp1 = new Image();
	corp1.src = "/images/redesign/images/corp1.png";
	corp2 = new Image();
	corp2.src = "/images/redesign/images/corp2.png";
	test1 = new Image();
	test1.src = "/images/redesign/images/test1.png";
	test2 = new Image();
	test2.src = "/images/redesign/images/test2.png";
	contact1 = new Image();
	contact1.src = "/images/redesign/images/contact1.png";
	contact2 = new Image();
	contact2.src = "/images/redesign/images/contact2.png";


	function changeImages() {
		var isNetscape = navigator.appName == "Netscape";
		
		if (isNetscape) {
			if (document.images) {
			 for (var i = 0; i < changeImages.arguments.length; i += 2) {
					document[changeImages.arguments[i]].src = eval(changeImages.arguments[i + 1] + ".src");
			 }
			}
		} else {
			
			for (var i = 0; i < arguments.length; i += 2){
				
				//alert(arguments[i+1]);
				
				//alert(eval(arguments[i + 1] + ".src"));
				document.images[arguments[i]].src = eval(arguments[i + 1] + ".src");
			}
			
			
			
		}
}

function setMsg(msg) {
        window.status = msg
        return true
}

var win;
	 function showWINDOW(url,x,y,x_cord,y_cord)
	  {
		
		if(url == null) { 
			url = "images/team_docusource.jpg";
		} 
		
		if(x_cord==null || y_cord==null){
			x_cord = 25;
			y_cord = 25;
		}  
	  
		if(x==null || y==null){
			x = 450;
			y = 600;
		}
		
		var str = "toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=yes,resizable=no,width="+x+",height="+y+""; 
		
		<!---turns toolbars on for developmen--->
		/*<cfif request.debug EQ 1>
			var str = "";
		</cfif>*/
		
		var z = parseFloat(navigator.appVersion);
		
		win = window.open(url, "win", str);
		win.moveTo(x_cord,y_cord);
		
		if (navigator.appName.substring(0.8) == "Netscape" || z > 4){
			this.win.focus();
		}
	 }
	 
	  function showMenu(elm){
		//alert(elm);
		window.document.getElementById(elm).style.display = '';
	}
	
	function hideMenu(elm){
		window.document.getElementById(elm).style.display = 'none';
	}
	
	function showChildMenu(elm,elm2){
		//alert(elm);
		window.document.getElementById(elm).style.display = '';
		//window.document.getElementById(elm2).style.display = '';
	}
	
	function hideChildMenu(elm,elm2){
		//alert(elm);
		window.document.getElementById(elm).style.display = 'none';
		//window.document.getElementById(elm2).style.display = 'none';
	}
	
	function gotoAdmin(){
		window.location.href = 'http://www.summitnw.com/siteadmin'
	}