<!--
	/*  
		This script generates the login and join button rollovers
	*/

	// LOAD IMAGES
	if (document.images){
		loginOn = new Image();
		loginOff = new Image();
		loginOn.src = "images/buttonLoginOn.gif";
		loginOff.src = "images/buttonLogin.gif";	
		joinOn = new Image();
		joinOff = new Image();
		joinOn.src = "images/buttonJoinOn.gif";
		joinOff.src = "images/buttonJoin.gif";	
	}

	// IMAGE SWAP
	function imageSwap(imgField,newImg) {
		if (document.images) {
			document[imgField].src = eval(newImg + ".src");
		}
	}


// -->