$(function()
{
   
   $.get(	"news/news-at.php",
		 	function(result)
			{
				$('#divNewsAt').html(result);
				SetCalendarHeight();
			});
   
   $.get(	"news/news-bgld.php",
		 	function(result)
			{
				$('#divNewsBgld').html(result);
				SetCalendarHeight();
			});
   
   
});

function CacheNews(news)
{
	$.post(	'news/news-bgld.php?opt=1',
			   	/*{ 	'header' : header,
					'text' : text,
					'link' : link
					}*/news,function(result)
					{
						$('#divNewsBgld').html(result);
						SetCalendarHeight();
					});	
}