<!--
	
	//Preload images
	
	function initLoad(){
		
		if (document.images)
	   	{
	   	//navigaton words
	     	editors_off = new Image(69,15);
	     	editors_off.src = "img/editors_off.gif";
	     	
	     	editors_over = new Image(69,15);
	     	editors_over.src ="img/editors_over.gif";

	     	contact_off = new Image(75,15);
	     	contact_off.src = "img/contact_off.gif";

	     	contact_over = new Image(75,15);
	     	contact_over.src = "img/contact_over.gif";
	     	
	     	access_off = new Image(70,15);
	     	access_off.src ="img/access_off.gif";

	     	access_over = new Image(70,15);
	     	access_over.src = "img/access_over.gif";

		}
	}

	//Rollover state
	function overState(imgName){
	   		if (document.images){
	   			document[imgName].src= eval(imgName + "_over.src");
	      	}
 	}
	
	//Rollout state
	function offState(imgName){
	   		if (document.images){
	   			document[imgName].src= eval(imgName + "_off.src");;
		
		    }
 	}
	//-->
