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

	this.showBox=function(elem) {
		if (this.last != elem) {	
			
			$('#'+this.last+':visible').fadeOut('slow');

			
			$('#'+elem+':hidden').fadeIn('slow');

			
			this.last = elem;
		}
		
	};
}
