<!--
	if (jQuery) {
		var posts = $('#home .post');
		
		var aantal_posts = parseInt($(window).width() / 330);
		if(aantal_posts < 3) aantal_posts = 3;
		
		$.each(posts,function(index,value){
			if(index < aantal_posts) $(this).css("display","block");
		})
		
		$(window).bind("resize",function() {
			aantal_posts = parseInt($(window).width() / 330);
			if(aantal_posts < 3) aantal_posts = 3;
			$.each(posts,function(index,value){
				if(index < aantal_posts) $(this).css("display","block");
				else $(this).css("display","none");
			})
		});	
	}
-->
