function swapStyle(target,set,style) {
	if (set == "on") {target.className = style+'-on';}
	else if (set == "off") {target.className = style;}
}
