function show_sub_menu(id)
{
	document.getElementById('sub' + id).style.display = 'block';
	document.getElementById('hoofd' + id).style.backgroundImage="url(img/h-hover.jpg)";
	document.getElementById('hoofd' + id).style.backgroundRepeat = 'repeat-x';
}

function hide_sub_menu(id)
{
	document.getElementById('sub' + id).style.display = 'none';
	document.getElementById('hoofd' + id).style.backgroundImage="none";
}
