// JavaScript Document

var prv = 'null';

function currentImage(tgt) {
	if (prv != tgt) {
		window.document.getElementById(tgt).src='/images/box-img-square-select.jpg';
		if (prv != 'null') {
			window.document.getElementById(prv).src='/images/box-img-square.jpg';
		}
		prv = tgt;
	}
}

function staffImage(tgt) {
	if (prv != tgt) {
		window.document.getElementById(tgt).src='/images/box-img-square-select-b.jpg';
		if (prv != 'null') {
			window.document.getElementById(prv).src='/images/box-img-square.jpg';
		}
		prv = tgt;
	}
}