$(document).ready(function() {

	$(document).pngFix(); 

	// container niet centreren wanneer viewport te klein is
	viewportHeight = $(window).height();  
	if (viewportHeight < 620) { 
		$("#container").css({'margin-top' : 0});
		$("#container").css({'top' : 30});
	}

	// imagerotators
	$.fn.cycle.defaults.speed   = 1500;
	$.fn.cycle.defaults.timeout = 3000;
		
	$('#imgageRotatorUp').cycle({fx:'fade', next:'#imgageRotatorUp', pause:1 });
	$('#imgageRotatorDown').cycle({fx:'fade', next:'#imgageRotatorDown', pause:1 });

	$('p').defuscate();

});
