// =============================================
// =============================================
// =====================================================
// CONSTRUCTOR
GoogleAPIKeyHolder = function(){
	this.keys = [];
};

GoogleAPIKeyHolder.prototype.addKey = function(pDomain, pKey){
	this.keys[pDomain] = pKey;
};

GoogleAPIKeyHolder.prototype.getKey = function(){
	if(this.keys[location.hostname]){
		return this.keys[location.hostname];
	}else{
		return null;
	}
}; 