// JavaScript Document

	// HMENU Buttons
	function megaButton( buttons, action )
	{
		
		var buttonId = new Array(
								 'hmenu_item_inhalt_01',
								 'hmenu_item_inhalt_02',
								 'hmenu_item_inhalt_03'
								 );
		
		
		for( i = 0; i < buttonId.length; i++ )
		{
			document.getElementById( buttons ).style.display = 'block';
			
			
			if ( buttonId[i] != buttons )
				document.getElementById( buttonId[i] ).style.display = 'none';

		}
		
	}