$(document).ready(function(){
    // fader by puredesign.be
    var $v_p_curr_list = 1;
    var $v_p_next_list;
    var $v_p_itemInterval;
    var $v_p_seconds = 4000; // 1000 = 1 seconde
    var $v_p_list_amo = $(".sfeer").size();
    if($v_p_list_amo > 1){
        $v_p_itemInterval = setInterval(slideNextP,$v_p_seconds); 
    }
    function slideNextP(){
        if ($v_p_curr_list == $v_p_list_amo){
            $v_p_next_list = 1;
        }
        else{
            $v_p_next_list = ($v_p_curr_list+1);
        }
        $("#sfeer"+$v_p_curr_list).fadeOut("fast");
        $("#sfeer"+$v_p_next_list).fadeIn("slow");
        $v_p_curr_list = $v_p_next_list;
    }
    // lightbox
    $(function(){
        $(".sfeer div a").lightBox();
    });

});
