// jquery-1.6.2.min.js
// jquery.cycle.all.min.js
// jquery.jcarousel.min.js

jQuery(document).ready(function() {
    // Projekt-Slideshow Head
    jQuery('#startpage_slideshow').after('<div id="startpage_slideshow_pager"></div>').cycle({
        fx: 'fade',
        speed: 500,
        timeout: 6000,
     // autostop: 1,
     // autostopCount: 1,
        pause: true,
        pauseOnPagerHover: true,
        pager:  '#startpage_slideshow_pager',
        pagerAnchorBuilder: function(i, slide) { 
            return '<a href="#" style="background-image: url('+ jQuery(slide).find('.thumbnail').attr('src') +')"><span>'+(i+1)+'</span></a>';
        }
    });
    // Projekt-Slider Content
    jQuery('#startpage_jcarousel').jcarousel({
    	wrap: 'circular',
        scroll: 4
    });
    
});

