function swapfeed(currfeed, prevfeed) {
	document.getElementById(currfeed).style.fontWeight = 'bold';
	document.getElementById(prevfeed).style.fontWeight = 'normal';
	document.getElementById(currfeed + "_feeds").style.display = 'block';
	document.getElementById(prevfeed + "_feeds").style.display = 'none';
	return;
}