$(document).ready(function() {
 
 $('#ajaxload-buttons a').click(function() {
  var id = $(this).attr('rel');
 $('.text').fadeOut(300,function () {
	    $('#loading').fadeIn("fast");
        $(".text").load('inc/content.php?id=' + id,null,show_content);
      });
 
function show_content() {
		setTimeout("$('.text').fadeIn(300);",300);
	    $('#loading').fadeOut("fast");		
}

 $('#navigatie a').removeClass('active');
 $(this).addClass('active');
 return false;
 });

});


