
function menu_switcher(optionid)
{
	if ( result = optionid.match(/^url_(.*)$/) )
		location.href = result[1];

	if ( result = optionid.match(/category_(.*)$/) )
		location.href = 'category.php?subid=' + result[1];
}