function $() {
		var elements = new Array();
		for (var i = 0; i < arguments.length; i++) {
			var element = arguments[i];
			if (typeof element == 'string')
			element = document.getElementById(element);
			if (arguments.length == 1)
				return element;
			elements.push(element);
		}
		return elements;
	}

	
	function showMenu(dMenu) {
		//hide all tabbed content first

		
		//show the new one
		$('menu'+dMenu).style.display = 'block';
		$('menuDrop'+dMenu).style.background = '#666666';
		
		//make all tabs down state
				
	}
	
	function hideMenu(dMenu) {
		//hide all tabbed content first

		
		//show the new one
		$('menu'+dMenu).style.display = 'none';
		$('menuDrop'+dMenu).style.background = 'none';
		
		//make all tabs down state
				
	}
	
	function showBackground(bImage) {
		document.getElementById('featureContent').style.background = '#000000 no-repeat top center';
		document.getElementById('featureContent').style.backgroundImage = bImage;
		
	}