$(document).ready(function() {
    var directory = $('#eyecatcher').attr('class');
    var files;
    $.get('themes/fensterbuenter/api.php',{'directory':directory},function(data) {
        files = data.split('|');
        var count = 1;
        var Length = files.length-1;
        for (var i=0;i<Length;i++) {
            $('#images').append('<img src="images/content/eyecatcher/' + files[i] + '" width="759" height="420" alt="">');
            count++;
        }
        $('#eyecatcher').children('#images').cycle({
            fx:'fade',
            speed: 4000
        });
        $('#eyecatcher').children('#texts').cycle({
            fx:'fade',
            speed: 4000
        });
    });
    
    
    $('.infos').hover(
      function(){
        $(this).children('.source').show();
        $(this).css('background', '#efefef');
        var img = $(this).attr('rel');
        $('#previewimg').html('<img src="'+img+'" width="180 alt="" title="">');
      },
      function(){
        $(this).children('.source').hide();
        $('#previewimg').html('');
        $(this).css('background', '#ffffff');
      }
    );
    
    
});
