var dist_timer = null;
function dist_displayMainTable(){
	var table = document.getElementById("distmaintable");
	window.clearTimeout(dist_timer);
	if ( table != null ) table.style.visibility = "visible";
}
function dist_hideMainTable( hide ){
	var table = document.getElementById("distmaintable");
	if ( table != null )	{
		if ( hide == true )		{
			window.clearTimeout(dist_timer);
			table.style.visibility = "hidden";
		}else{ dist_timer = window.setTimeout('dist_hideMainTable(true)', 350);
		}
	}
}
function selectDistOption( row ) { if ( row != null ) row.className = "distmenuon"; }
function deselectDistOption( row ) { if ( row != null ) row.className = "distmenuoff"; }




var contact_timer = null;
function contact_displayMainTable(){
	var table = document.getElementById("contactmaintable");
	window.clearTimeout(contact_timer);
	if ( table != null ) table.style.visibility = "visible";
}
function contact_hideMainTable( hide ){
	var table = document.getElementById("contactmaintable");
	if ( table != null )	{
		if ( hide == true )		{
			window.clearTimeout(contact_timer);
			table.style.visibility = "hidden";
		}else{ contact_timer = window.setTimeout('contact_hideMainTable(true)', 350);
		}
	}
}
function selectContactOption( row ) { if ( row != null ) row.className = "contactmenuon"; }
function deselectContactOption( row ) { if ( row != null ) row.className = "contactmenuoff"; }




var product_timer = null;
function product_displayMainTable(){
	var table = document.getElementById("productmaintable");
	window.clearTimeout(product_timer);
	if ( table != null ) table.style.visibility = "visible";
}
function product_hideMainTable( hide ){
	var table = document.getElementById("productmaintable");
	if ( table != null )	{
		if ( hide == true )		{
			window.clearTimeout(product_timer);
			table.style.visibility = "hidden";
		}else{ product_timer = window.setTimeout('product_hideMainTable(true)', 350);
		}
	}
}
function selectProductOption( row ) { if ( row != null ) row.className = "productmenuon"; }
function deselectProductOption( row ) { if ( row != null ) row.className = "productmenuoff"; }

var variety_timer = null;
function variety_displayMainTable(){
	var table = document.getElementById("varietymaintable");
	window.clearTimeout(variety_timer);
	if ( table != null ) table.style.visibility = "visible";
}
function variety_hideMainTable( hide ){
	var table = document.getElementById("varietymaintable");
	if ( table != null )	{
		if ( hide == true )		{
			window.clearTimeout(variety_timer);
			table.style.visibility = "hidden";
		}else{ variety_timer = window.setTimeout('variety_hideMainTable(true)', 350);
		}
	}
}
function selectVarietyOption( row ) { if ( row != null ) row.className = "varietymenuon"; }
function deselectVarietyOption( row ) { if ( row != null ) row.className = "varietymenuoff"; }
