/*
 * Copyright (C) 2008 Potato Die - All rights reserved
 */
 
if ( document.getElementsByTagName )
{
	document.write ( '<link rel="stylesheet" href="/css/hide_submenu.css" type="text/css" media="screen">' );
}

window.onload = function()
{
	submenuWidth = document.getElementById('submenu').scrollWidth;
	
	lijnSubmenu();
	
	activeerInvoerveld();
}

function activeerInvoerveld ( )
{
	if ( document.forms[0] )
	{
		var e = document.forms[0].elements[0];
		try 
		{
			e.focus();
		}
		catch( e ){};
	}		
}	
