function rollover (id, action)
{
	if (action == 'over')
	{
		document.getElementById(id).src = 'images/top_nav_'+id+'_on.gif';
	} else if (action == 'out') {
		document.getElementById(id).src = 'images/top_nav_'+id+'_off.gif';
	}
}