$(document).ready(function(){
	
	/*- hoogtes gelijk zetten -*/
	var contentH = $('#content').height();
	var sidebarH = $('#sidebar').height();
	var hVerschil = (sidebarH-contentH)-20;
	
	if(hVerschil>0){
		$('#content').append('<div style="height: '+hVerschil+'px; margin-top:-40px; margin-bottom:20px;">&nbsp;</div>');
	}
	
	
	/*- nav active state -*/
	var URL = String(document.location);
	var postURL = URL.split('?');
	postURL = postURL[1];
	var links = $('#header a');
	links.each(function(){
		var link = $(this).attr('href');
		postLink = link.split('?');
		postLink = postLink[1];
		if(link == URL || postLink == postURL){
			$(this).addClass('active');
		}		
	})

	
	$('#content h2').sifr({
		font: 'ch.swf',
		width: 520,
		textAlign: 'left',
		offsetLeft: 0,
		offsetTop: 10,
		textTransform: 'uppercase'
	});
	$('#sidebar h2').sifr({
		font: 'ch.swf',
		width: 220,
		textAlign: 'left',
		offsetLeft: 0,
		offsetTop: 10,
		textTransform: 'uppercase'
	});
	$('#calendar h3').sifr({
		font: 'ch.swf',
		width: 240,
		textAlign: 'left',
		offsetLeft: 0,
		offsetTop: 10,
		textTransform: 'uppercase'
	});
	
});

function backToTop(){
	$.scrollTo('body','slow');
}
