/*
	CycleMapLegendControl - a control to show an elevation image
	
0.1  - initial release

*/

function CycleMapLegendControl() {

function CycleMapLegendControl() {
	BpControl.call(this,'<img src="/img/legend.gif">',new GSize(7,32),G_ANCHOR_TOP_RIGHT);
}

CycleMapLegendControl.prototype = new BpControl();

CycleMapLegendControl.prototype.initialize = function() {
	var div = BpControl.prototype.initialize.apply(this,arguments);
	this.show();
	return div;
};

window.CycleMapLegendControl = CycleMapLegendControl;
}
CycleMapLegendControl();
