$(document).ready(function(){
	
	if($('#livetime').length > 0 ) { livetime_init(); }
	/* 
		resize the pagebox on onload and on window.resize
		inline images need a height at all times to work correctly!
	*/
	
	resizePagebox();
	
	$(window).bind('resize', function(){
	
		resizePagebox();
	
	});


});



function resizePagebox() {
	
	$('#page-box').height('auto');
	
	if ($('#page-box').height() >= $(window).height()) {
		
    	return false;
		
    }
	
	else if ($('#page-box').height() < $(window).height())  {
		
    	$('#page-box').css({'height' : $(window).height()});
	
	}
	
	else {
		
		return false;
		
	}
	
	return false;

}

function herlaad_nieuwsoverzicht(jaar, page) {
	$('#nieuwsholder').load('/ajax/nieuwsoverzicht.ajax.php', {jaar: jaar, page: page});
}