	GJF.Class.create("GJF.Controls.Control", Object, 
		function(config) {
			var thisContext = this;
			this.debug = config ? config.debug : false;
			$(window).resize(function(){
			  thisContext.resize();
			});
		}, 
		{
			debug: false,
			
			log: function() {
				if (!this.debug) return false;
				if (typeof console == 'object' && typeof console.log != 'undefined') {
					try {
						console.log.apply(this, arguments);
					} catch(e) {
						//do nothing
					}
				}
			},
			
			resize: function() {}
		}
	);

