$(document).ready(function() {
$('#image').cycle({
   fx:    'fade', 
   random: 1,  
   speed:  2000,
   timeout:  2000    
});
});


$(document).ready(function() {
$("a.impressie").fancybox();
});


$(document).ready(function(){
    $("#sidebar2 a").append("<span></span>");
    $("#sidebar2 a").hover(function(){
        $(this).children("span").fadeIn(600);
    },function(){
        $(this).children("span").fadeOut(600);
    });
}); 
