function load_news()
{
	load_all_sections('news');
	unload_all_sections('news_content');
}

function load_article(id)
{
	if(ready)
	{
		ajax.post('/handlers/news.cfm?layout=blank&article_id='+id,load_article_content);
		unload_all_sections('news_nav');
	}
}

function load_article_content(content)
{
	ID('news_selected_content').innerHTML = content.split('~')[3];
	setTimeout('load_all_sections(\'news_content\')',500);
	document.title = 'Remedy Media Group: News - '+content.split('~')[1];
	window.location.href='#news-'+content.split('~')[2];
}

function quick_load_news(id)
{
	unload_all_sections('news');
	ajax.post('/handlers/news.cfm?layout=blank&article_id='+id,load_article_content);
}

function unload_article()
{
	if(ready)
	{
		setTimeout('ID(\'news_selected_content\').innerHTML = \'\';load_all_sections(\'news_nav\')',500);
		news_selected_section.unload_section();
		document.title = 'Remedy Media Group: News';
		window.location.href='#news';
	}
}

function unload_news()
{
	unload_all_sections('news');
	unload_all_sections('news_content');
}