	a1 = new Image();
	a1.src = "images/layout2010/a1.jpg";
	a2 = new Image();
	a2.src = "images/layout2010/a2.jpg";
	
	b1 = new Image();
	b1.src = "images/layout2010/b1.jpg";
	b2 = new Image();
	b2.src = "images/layout2010/b2.jpg";
	
	c1 = new Image();
	c1.src = "images/layout2010/c1.jpg";
	c2 = new Image();
	c2.src = "images/layout2010/c2.jpg";
	
	d1 = new Image();
	d1.src = "images/layout2010/d1.jpg";
	d2 = new Image();
	d2.src = "images/layout2010/d2.jpg";
	
	e1 = new Image();
	e1.src = "images/layout2010/e1.jpg";
	e2 = new Image();
	e2.src = "images/layout2010/e2.jpg";
	
	f1 = new Image();
	f1.src = "images/layout2010/f1.jpg";
	f2 = new Image();
	f2.src = "images/layout2010/f2.jpg";

	function changeImages() {
		var isNetscape = navigator.appName == "Netscape";
	
		if (isNetscape) {
			if (document.images) {
			 for (var i = 0; i < changeImages.arguments.length; i += 2) {
					//alert(i);
					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 development--->
		/*<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'
	}
