// JavaScript Document




/////////// news

function getNews(newsItem) {
	getNewsStory(newsItem);
	/* getNewsTitle(newsItem);
	var newsHash = "#news?item=" + newsItem;
	if (newsItem != "" && newsHash != window.location.hash) {
		newsHash = newsHash.replace('#','');
		makeHistory(newsHash);
	}
	*/
}

function getNewsStory(newsItem) {

	$w1("#newsbanner_toptext").html('Getting your selected feature...');
	$w1('#storyajax').css({ opacity: "0.8" }).fadeIn();
	
	var updateurl = 'news_update_story.php?item=' + newsItem;
	$w1("#newstop").load(updateurl, function() {
		$w1("#storyajax").fadeOut();
	});

}

function getNewsTitle(newsItem) {

	var updateurl = 'news_update_title.php?item=' + newsItem;
	$w1("#newsbanner_toptext").load(updateurl);

}




