
function news_ticker()
{
	var img = '<img id="home-news-img" class="load-img" src="' +  SITE_PATH + 'img/ajax-loader.gif" alt="" style="top:37px;left:268px;" />';
	$("#news-container").fadeTo(1, 0.3,
		function() {
			$(this).parent().append( img );
		}
	);
	$.ajax({
		type: "POST",
		url: SITE_PATH + "ajax/jajax.php",
		data: "m=get_home_news",
		success: function(result) {
			$("#home-news-img").remove();
			$("#news-container").fadeTo(1,1);
			if(result.match(/^Error:/)) {
				return;
			}
			$("#news-container").html( result );
		}
	});
}

$(document).ready(
	function() {
		if(false && NEWS_TICKER == true) {
			window.setInterval('news_ticker();',15000);
		}
	}
);