$(function() {
        $(".arrow")
        .find("span")
        .hide()
        .end()
        .hover(function() {
                $(this).find("span").stop().fadeTo("fast", 1);
        }, function() {
                $(this).find("span").stop().fadeTo("fast", 0);
        });
		// code wordt toegepast op elke link met de class 'arrow' en de span die zich daarin bevind.
});

