function getTodaysNews()
{
    $.ajax({
        url: "/getNews.php",
        cache: false,
	    async: false,
        success: function(html){
            $('#news').html(html);
        }
    });
}
$(document).ready(function(){
    loadJs('jquery.timer.js');
    getTodaysNews();
	$("#news").everyTime(10000, function(){
        getTodaysNews();
    });
});
