/*
* All rights reserved.
* copyright (c) 2005 Chris Lacy
*/

function ColorContainer (colorString, colorHashString) {
	this.colorString = colorString;
	this.colorHashString = colorHashString;
}

ColorContainer.prototype.getColorString = function() {
	return this.colorString;
}

ColorContainer.prototype.getColorHashString = function() {
	return this.colorHashString;
}