function initPage() {
	$('.news-item a').not('[href^=http://]').click(function() {
		href = transformLink($(this).attr('href'));
		$('#content').fadeOut(200).load(href, null, function() {
			initPage();
			$('#content').fadeIn(200)
		});
		return false;
	});
}

$(document).ready(function() {
	initPage();
});