if (!AWP.Control) AWP.Control = {};

AWP.Control.Information = OpenLayers.Class(OpenLayers.Control, {
    initialize: function(options) {
		document.getElementById('awp_information').onclick = function() {
			Ext.fly('map_info').toggle();
		}
    },
	
    CLASS_NAME: "AWP.Control.Information"
});
/*			eventListeners: {
	'activate': function() {
		Ext.get('map_info').fadeIn({ endOpacity: .75, duration: 1});
	},
	'deactivate': function() {
		Ext.get('map_info').fadeOut({
					endOpacity: 0,
					easing: 'easeOut',
					duration: 1,
					remove: false,
					useDisplay: false
					});
				}
			}
		}*/
