﻿function initReferenties(){
    $('#referentielijst .item').each( function(){
    var url = $(this).find('a').attr('href');
    $(this).find('.overlay').click( function(){
    window.location = url;
    }).hover(
    function(e){
        $(this).fadeTo("100",0);
        },function(){
        $(this).fadeTo("100",0.7);
        }
        );
    });

    $('#referentielijst .item .overlay').fadeTo("0",0.7);
}

$().ready( function(){
    initReferenties();
});