// Start delay
$.fn.delay = function(time, callback){
    jQuery.fx.step.delay = function(){};
    return this.animate({delay:1}, time, callback);
}

// Start jqeury
$(document).ready(function () { 
				
// Fade in header.
$('#header').delay(1000, function() {
      $('#headercontent').animate({ 
        width: "550px",
		height: "310px",
        opacity: 0.65,
        marginLeft: "0" 
        }, 1500);
  	});

// and text join
$('#headertext').delay(2500, function(){
    $('#headertext').fadeTo(1500,1.00);
 	});

// ref form show/hide
$('#refsform-form').hide();
	$('#refsform h6').click(function() {
		$(this).next().slideToggle ('slow');
			$(this).toggleClass("active");
	});

// Rererenties toggle and add class 
 $('.referentie-top').click(function() {
		$(this).next('.referentie-content').slideToggle('slow'); 
	$(this).toggleClass("active");
		
	});

// Albumblock clickable
$(".albumcat").click(function(){
    	window.location=$(this).find("a").attr("href");return false;
	});
	
$("ul#ni-cat li a:first").css("border-top", "none");
	
});
