$(document).ready(function() {
	/* tooltip */
	$(function(){
		$('*[title]').monnaTip();
	});

	/* fancybox */
	$('.fancybox img').mouseover(function() {
		$(this).addClass('hover');
	});
	
	$('.fancybox img').mouseout(function() {
		$(this).removeClass('hover');
	});
	
	$('a.fancybox').fancybox({
		'titleShow' : true,
		'titlePosition' : 'over',
		'transitionIn' : 'elastic',
		'transitionOut' : 'elastic'
	});

	/* link in nieuw venster laten openen */
	$('a.extern')
		.attr('title','Deze link opent in een nieuw venster.')
		.click(function(e){
		window.open(this.href);
		e.preventDefault();
	});
	
	/* kalender */
	$('#nextmonth').live('click', function() {
		$.get('/site/php/_ajax_kalender.php', { periode: $(this).attr('rel') }, function(data){
			$('#calendar').html(data);
		});
	});
	
	$('#lastmonth').live('click', function() {
		$.get('/site/php/_ajax_kalender.php', { periode: $(this).attr('rel') }, function(data){
			$('#calendar').html(data);
		});
	});	
});
