function checkWidth()
{
	var ww = 0;
	if (!window.innerWidth)
	{	if (!(document.documentElement.clientWidth == 0))
		{	ww = document.documentElement.clientWidth;
		}
		else
		{	ww = document.body.clientWidth;
		}
	}
	else
	{	ww = window.innerWidth;
	}
	if (ww < 1024)
	{	document.getElementById('all').style.left = '10px';
		document.getElementById('all').style.marginLeft = '0px';
	}
}
	

function hil(el)
{
	el.className = 'navh';
	el.style.cursor = 'pointer';
}


function xhil(el)
{
	var n = el.id.substr(3);
	if (location.href.indexOf(pg[n])>-1)
	{	el.className = 'nava';
	}
	else
	{ el.className = 'navn';
	}
	el.style.cursor = 'auto';
}


function goPage(el)
{
	var n = el.id.substr(3);
	location = pg[n]+'.html';
}

