$(function() {
    $('.link').click(function() {
        if(!$(this).hasClass('back')) {
            $('.tabs').fadeOut('slow');
            $('.'+$(this).parent().attr('id')).fadeIn('slow');
            $('.' + $(this).parent().attr('id') + ' .fc').fullCalendar('render');
            $('#relative').height($('.' + $(this).parent().attr('id')).height() + 22);
        }
        $(window).scrollTop(0);
    });

    $('.back').click(function() {
        $(this).parent().fadeOut('slow');
        $('.tabs').fadeIn('slow');
		$('#relative').height($('.tabs').height() + 22);
    });
	
	$('#reklame a').fancybox();
    
    $('.jcall').fullCalendar({
        editable: false,
        contentHeight: 400,
        events: "events.php",
        monthNames: ['Januari', 'Februari', 'Maart', 'April', 'Mei', 'Juni', 'Juli', 'Augustus', 'September', 'Oktober', 'November', 'December'],
        monthNamesShort: ['Jan', 'Feb', 'Maa', 'Apr', 'Mei', 'Jun', 'Jul', 'Aug', 'Sep', 'Okt', 'Nov', 'Dec'],
        dayNamesShort: ['Zo', 'Ma', 'Di', 'Wo', 'Do', 'Vr', 'Za'],
        buttonText: {
            today: 'Vandaag'
        },
		timeFormat: 'H:mm'
    });
});
