var stopPos="";

function init() {
this.document.images[stopPos].src="b2.jpg";
}

function on(pos) {
 if (pos!=stopPos) this.document.images[pos].src="b2.jpg";
}

function off(pos) {
 if (pos!=stopPos) this.document.images[pos].src="b1.jpg";
}
