// JavaScript Document

function LoadBoxes(){
	$('#box-error').fadeIn('slow', function() {});
	$('#box-warning').fadeIn('slow', function() {});
	$('#box-ok').fadeIn('slow', function() {});
	$('#box-vraag').fadeIn('slow', function() {});
}

function SubNav(id){
$('.s1').hide();
$('.s2').hide();
$('.s3').hide();
$('.s4').hide();
$('.s5').hide();
$('.s6').hide();
$('.s7').hide();
$('.s8').hide();
$('.s9').hide();
$('.s10').hide();	
$('.'+id).fadeIn('slow');
	
}

