﻿// JavaScript Document

function SwitchBg(IDObj,defaultBg,switchBg) {
	if(IDObj.style.background==switchBg) {
		IDObj.style.background=defaultBg;	
	}else{
		IDObj.style.background=switchBg;
	}
}

