if (typeof console == 'undefined') {
	var Console = function(){
		this.log = function() {};
	}
	var console = new Console();
}

