/* twilson.js - 01/10/2008 - 22:41 */

/* ================================= */
/*  Main Javascript for twilson.com  */
/* ================================= */

window.onload = initialize;

function initialize() {
	
	document.getElementById("nspic").onmouseover = swapNS1;
	document.getElementById("nspic").onmouseout = swapNS2;
	
	document.getElementById("mercpic").onmouseover = swapMerc1;
	document.getElementById("mercpic").onmouseout = swapMerc2;
	
}

function swapNS1() {
	
	document.getElementById("nspic").src = "images/nativesoil1.jpg";
}

function swapNS2() {
	
	document.getElementById("nspic").src = "images/nativesoil2.jpg";
}

function swapMerc1() {
	
	document.getElementById("mercpic").src = "images/mercurials1.jpg";
}

function swapMerc2() {
	
	document.getElementById("mercpic").src = "images/mercurials2.jpg";
}
