
var btns = new Array(
	"../images/layout/relic_logo.gif",
	"../images/layout/bg_texture.gif",
	"../images/nav/wines.gif",
	"../images/nav/vineyards.gif",
	"../images/nav/people.gif",
	"../images/nav/ordering.gif",
	"../images/nav/list.gif",
	"../images/nav/contact.gif",
	"../images/nav/apothecary.gif",
	"../images/nav/wines_on.gif",
	"../images/nav/vineyards_on.gif",
	"../images/nav/people_on.gif",
	"../images/nav/ordering_on.gif",
	"../images/nav/list_on.gif",
	"../images/nav/contact_on.gif",
	"../images/layout/relic_logo_on.gif"
	"../images/nav/apothecary_on.gif",
);

var imgs = new Array();

for (x in btns) {
	imgs[x] = new Image();
	imgs[x].src = btns[x];
}

function swapSrc(obj,str_find,str_rep) {
	if (!document[obj]) return;
	document[obj].src = document[obj].src.replace(str_find,str_rep);
}

function cancelEvts(obj) {
	if (!obj) return false;
//	obj.onmouseover = null;
//	obj.onmouseout = null;
	if (obj.blur) obj.blur();
	return true;
}
