// JavaScript Document
// execute your scripts when the DOM is ready. this is mostly a good habit
$(function() {
	
	// select one or more elements to be overlay triggers
	if ($('a.trigger').length) {
		toShowInFancyBox = $('a.trigger')
		toShowInFancyBox.fancybox();
	}

	// display tweets from several users
	$("#jwzTweets").tweet({
	  avatar_size: 32,
	  count: 3,
	  username: ["jwznoord", "PieterJanPostma", "Marit_B"],
	  loading_text: "twitter doorzoeken&hellip;",
	  refresh_interval: 180
	});
	
	$('#content').append('<div class="fb-box"/>')
	$('#content:not(.home) .fb-box').load('lib/like-box-small.inc.php');

});
