//************************
// market place menu class
//************************

// create namespace
Ext.namespace('ER.menu');

ER.menu.MPMenu = Ext.extend(Ext.menu.Menu, {
	id: 'MarketPlaceMenu',
	initComponent : function() {
		Ext.apply(this, {
			items : [
				this.buildMenu()
			]
		});
		ER.menu.MPMenu.superclass.initComponent.call(this);
	},
	buildMenu: function(){
		return [{
			text: 'Classifieds',
			href: "http://www.equine-ranch.com/viewads.php"
		},{
			text: 'Auction Catalogs',
			href: "http://www.equine-ranch.com/auctioncatalog.php"
		},{
			text: 'Frozen Semen',
			href: "http://www.equine-ranch.com/searchfs.php"
		}]
	}
});

Ext.reg('marketplacemenu', ER.menu.MPMenu);
