	ZONTIK.Class.create("ZONTIK.Controls.Control", Object, 
		function(config) {
			var thisContext = this;
			this.target = config.target;
			$(window).resize(function(){
			  thisContext.resize();
			});
		}, 
		{
		
			target : "",
			
			getHtml: function() {
			},
			
			remove: function(i) {
			},
			
			resize: function() {
			}
			
		}
	);
