// Iterate through all TABLE elements in the page and 
// change the z-index of those that have it set at 999 to 9999.


var tables = document.getElementsByTagName("TABLE");

for (var i=0; i<tables.length; i++)
	if (tables[i].style && tables[i].style.zIndex == 999)
	{
		tables[i].style.zIndex = 999999;
		//alert(tables[i].style.zIndex);
	}

document.getElementById("BasicMenu").style.zIndex = 1000000;
//alert(document.getElementById("BasicMenu").style.zIndex);

