function showCat( id )
{
	document.getElementById(id).style.display = 'block';
}

function hideCat( id )
{
	document.getElementById(id).style.display = 'none';
}