function showMegaDropdownStatic( parentIndex ) {

	var parentId = 'megaMenuTab' + parentIndex;
	
	cancelTerminateMegaDropdown();
	if( currentActiveParentId != parentId) {
		terminateMegaDropdown();
	}

	var parentEl = document.getElementById(parentId); 
	var divTags = parentEl.getElementsByTagName('div');
	
	
		// No menu to create if the node has no children!
		if (navigationArray[parentIndex] != null && navigationArray[parentIndex].length > 0) {
			addActiveHoverCSSClass( parentId );
			
			var left = 14 + (160 * parentIndex);
			var leftStr = left + 'px';
			
			// empty the dropdown and display
			j('div#megaDropdown').empty().css('display','');
			divTags[1].style.display = '';
			j('div#megaDropdown').css('left', leftStr);
			
			// Loop through the level two nodes (direct child of parent)
			var i;
			for ( i = 0; i < navigationArray[parentIndex].length; i++) {
				var topicWrapperEl = document.createElement("div");
				//topicWrapperEl.setAttribute("class","topicWrapper");
				topicWrapperEl.className='topicWrapper';

				// Add a title (topic) div node to the wrapper
				var topicTitleEl = document.createElement("div");
				topicTitleEl.className='topicTitle';

				topicTitleDivChildEl = document.createElement("div");

				topicTitleLinkChildEl = document.createElement("a");
				topicTitleLinkChildEl.href = navigationArray[parentIndex][i].link;
				topicTitleLinkChildEl.onclick = function() {terminateMegaDropdown();}; 
				topicTitleLinkChildEl.innerHTML = navigationArray[parentIndex][i].title;
				topicTitleDivChildEl.appendChild( topicTitleLinkChildEl ); 
				topicTitleEl.appendChild( topicTitleDivChildEl );
				
				topicWrapperEl.appendChild( topicTitleEl );

						j('div#megaDropdown').append(topicWrapperEl);
					}
 
      
      
				/*	// pad the remaining so each line has 6 or 12
			for( ; i % 6 != 0; i++ ) {
				var topicWrapperEl = document.createElement("div");
				topicWrapperEl.className='topicWrapper';
				// Add a title (topic) div node to the wrapper
				var topicTitleEl = document.createElement("div");
				topicTitleEl.className='topicTitle';
				topicTitleDivChildEl = document.createElement("div");
				topicTitleEl.appendChild( topicTitleDivChildEl );
				topicWrapperEl.appendChild( topicTitleEl );
				//topicWrapperEl.appendChild( document.createElement("ul") );
				j('div#megaDropdown').append(topicWrapperEl);
			}*/
			
			

			var clearFixEl = document.createElement("div");
			clearFixEl.className='clearfix';

			var megaDropdownBottomEl = document.createElement("div");
			megaDropdownBottomEl.className='megaDropdownBottom';

			j('div#megaDropdown').append(clearFixEl).append(megaDropdownBottomEl);
		}

		// Assign the parentId to currentActiveParentId for 'caching'
		currentActiveParentId = parentId;

}
