function swapBackgroundColor(obj,colorIDTo,colorIDFrom){
	var colorArray = new Array("#ffff71","transparent");
	try{
		if(obj.style.backgroundColor == colorArray[colorIDFrom] || obj.style.backgroundColor == ""){
			obj.style.backgroundColor = colorArray[colorIDTo];
		}
	}catch(err){
	}
}
