function BoxMenu () {
	this.last = '';

	this.showBox=function(elem) {
		if (this.last != elem) {	
			
			$('#'+this.last+':visible').hide();
			$('#'+this.last+'_a').background('#fff');
			$('#'+this.last+'_a').color('#666');
			
			$('#'+elem+':hidden').slideDown('normal');
			$('#'+elem+'_a').background('#ff7800');
			$('#'+elem+'_a').color('#FFF');
			
			this.last = elem;
		}
		
	};
}
