// ijkmenu V0.1
function d(s)
{
	document.getElementById('dbg').innerHTML += '<br/>' + s;
}

function ijkm_over()
{
	this.children[1].style.display = 'block';
}

function ijkm_out()
{
	this.children[1].style.display = 'none';
}

function ijkm_init(id)
{
	var m = document.getElementById(id);
	with (m.style) {
		position = 'relative';
		width = '100%';

	}
	
	for (var i = 0; i < m.children.length; i++)
	 with(m.children[i]) {
		if (tagName == 'DIV')
		{
			with (style) {
				position = 'relative';
				display = 'block';
				styleFloat = 'left';
			}
			with (children[0].style) {
				display = 'block';
				styleFloat = 'none';
			}
			with (children[1].style) {
				position = 'absolute';
				display = 'none';
				listStyle = 'none';
				marginLeft = '0px';
			}
			onmouseover = ijkm_over;
			onmouseout = ijkm_out;
		}
	}
}

