//****************************************************************************
// RCF - JavaScript Document
//
// Functions / Variables / Scripts, to preform images rollovers and rollouts
//****************************************************************************
function preLHdrIMG(a,b,c,d){
	var bioIMG = new Image()
	var aofpIMG = new Image()
	var contactIMG = new Image()
	var officeLocIMG = new Image()
	
	bioIMG.src = a;
	aofpIMG.src = b;
	contactIMG.src = c;
	officeLocIMG.src = d;
}
function swapImage(name,path){
document.images[name].src=[path];
}
function restoreImage(name,path){
document.images[name].src=[path];
}
function goToURL(a) {
    window.location= a;
}