var timeInt = 0;

function aow_show()
{
	var menu = document.getElementById ('aow_block');
	menu.style.zIndex = 100;
	menu.style.display = 'block';
}

function aow_hidden()
{
	var menu = document.getElementById ('aow_block');
	menu.style.display = 'none';
}

function aow_clr()
{
	clearTimeout (timeInt);
}

function aow_set()
{
	timeInt = setTimeout ('aow_hidden()', 500);
}
