RLC.initIcons = function() {
	this.icons = {}; 
	this.icons.RED = new CM.Icon();
	this.icons.RED.image = "images/light-red.png";
	this.icons.RED.iconSize = new CM.Size(16, 16);
	this.icons.RED.iconAnchor = new CM.Point(8, 8);
	this.icons.GREEN = new CM.Icon(this.icons.RED, "images/light-green.png");
	this.icons.YELLOW = new CM.Icon(this.icons.RED, "images/light-yellow.png");
};
