function initNav() {

    $(".nav .nav-item").hover(
        function (e) {

            if(!jQuery(".sub", this).is(":animated")) {

                jQuery(".sub", this).slideDown('slow');
            }
        },
        function (e) {

            jQuery(".sub", this).slideUp('slow');
        }
    );
}

$(document).ready(function() {
    initNav();
    $('textarea.expanding').autogrow();
    $('a[rel=enlarge], a.enlarge').colorbox({transition:'fade',previous:'vorige',next:'volgende',close:'sluiten',current:'',innerWidth:'1000px'});
});

jQuery(function($){
	$(document).ready(function(){
		if(($.browser.msie)&(parseInt($.browser.version)<7)){
			$("img[src$='.png']").each(function(){$(this).addClass("png");});
		}
	});
});
