/**
 * @author Andrew Welch
 */
function imgSwap(img,flip) {
	document[img].src = (flip=='on') ? img + "_on.gif" : img + ".gif";
}