<!--

//pre load and rollover code for tools, video, and environments pages

function pre_img(theArray){
	for(x in theArray){
		loadedImgs[x]=new Image();
		loadedImgs[x].src=theArray[x];
	}
}
	

var imgArray = new imgList();

var loadedImgs=new Array();

pre_img(imgArray);


function display_proj(img_ref,name,tag_line,date_line,credit_line) 
{
	
	document.images['proj_logo'].src=loadedImgs[img_ref].src;
	document.getElementById("proj_slug").innerHTML='<p>'+name+'<br><em>'+tag_line+'<\/em><br>'+date_line+'<br>'+credit_line+'<\/p>';
}

function hide_proj(img_ref) 
{
	document.images['proj_logo'].src=loadedImgs[img_ref].src;
	document.getElementById("proj_slug").innerHTML=' <h1 class="active"><span style="margin-left: -112px;">ROLL OVER THE PROJECT NAMES ABOVE TO PREVIEW, CLICK TO SELECT<\/span><\/h1>';
}

//-->