var menuFooter = {

	text: null,

	show: function(o)
	{
		var p = this.getText(o);
		p.style.display = 'block';
	},

	hide: function(o)
	{
		var p = this.getText(o);
		p.style.display = 'none';
	},

	getText: function(o)
	{
		return this.getElementByTagName(
			this.getElementByTagName(o, 'A'),
			'SPAN'
		);
	},
	
	getElementByTagName: function(o, tagName)
	{
		var objs = o.childNodes;
		
		for (var i=0; i<objs.length; i++)
		{
			if (objs[i].tagName == tagName) return objs[i];
		}
		
		return null;
	}
	
};
