function getNewsItemsResponseHandler(ajaxResponse) {
	$('#newsPortal').fadeOut('slow', function(){
		$(this).fadeIn('fast').html(ajaxResponse.responseText);
	});
	window.newsTimerId = setTimeout('$(\'#nextButton\').click()',10000);
}

function getSuccessItemsResponseHandler(ajaxResponse) {
	$('#successBox').fadeOut('slow', function(){
		$(this).fadeIn('fast').html(ajaxResponse.responseText);
	});
	window.successTimerId = setTimeout('$(\'#nextSButton\').click()',10000);
}

