
function Configuration_1_1(){
	if(!this.Loaded){
		this.URI	= 'http://avitar.net/';	/* Domain / base URI to web site*/
		this.JS		= this.URI + 'js/JAK/';	/* Javascript URI 		*/
		this.CSS	= this.URI + 'css/';	/* Cascading Style Sheets URI 	*/
		this.IMG	= this.URI + 'pic/';	/* Image URI 			*/
		this.AUDIO	= this.URI + 'audio/';	/* Audio URI 			*/
		this.Version	= 1.1;			/* Version of Configuration	*/
		this.Loaded	= true;			/* Loaded Flag			*/
	}
	this.Load = function(API){
		API.URI.Base = this.URI;
		API.URI.JS = this.JS;
		API.URI.CSS = this.CSS;
		API.URI.IMG = this.IMG;
	}
}