$(document).ready(function() {
	resize();
  $(window).resize(function(){ resize(); });
  $(window).load(function(){ resize(); });
  
	if($('#imagefade').length) {
		$('#imagefade').innerfade({ animationtype: 'fade', speed: 3500, timeout: 6000, type: 'sequence' });
	}
});

function resize() {
	//console.log('content:'+$('#content').height());
	//console.log('content-right:'+$('#content_right').height());

	var windowHeight = $(window).height();
	var contentHeight = $('#content_right').height();
	var fixedHeight = 85 + 114; // header + footer
	var totalHeight = contentHeight + fixedHeight;
	
	if(windowHeight > contentHeight) {
		$('#spacer').height(windowHeight - totalHeight);
	}
}
