/*********************************************** 
 * File Name:		feedscript.js
 * Description:		javascript used to change the visibility of rss elements
 * Programmer:		Jason Garrett
 * Date:			5/13/2008
 ***********************************************
 * History
 *  
 ***********************************************/

///////////////////////////////////////////////////////////
// shows hidden feeds and then hides the button that the
// user clicked on to show the feeds.
///////////////////////////////////////////////////////////
function showfeeds(targetId)
{
	var rows = document.getElementsByTagName('tr');
	for (var i = 0; i < rows.length; i++) 
	{
		var row = rows[i];
		if (row.id.indexOf(targetId) == 0) 
		{
			row.className = 'show_section';
		}
	}
	
	var row = document.getElementById('morefeeds');
	row.className = 'hide_section';
}
