// File: jscripts.js
// Author: Geoffrey Bradford (geoff@whitedonkey.com)
/* Comment:
	JavaScripts for Bob Beloff's Website NewHorizonsFishing.com
*/

function swapImg(name, image) {
	// Swaps the source of element "name" with img
	var elem = document[name];
	elem.src = image;
}

// Wrapper functions for On and Off
function turnOn(elem) {
	swapImg(elem, "img/nav_white.gif");
}

function turnOff(elem) {
	swapImg(elem, "img/1x1.gif");
}