jQuery(document).ready(function($) {

	$('#videos li.2').hide();
	$('#videos li.3').hide();

$('a.0').click(function (){
	$('#videos li.1').show();
	$('#videos li.2').hide();
	$('#videos li.3').hide();
	return false;
});

$('a.1').click(function (){
	$('#videos li.2').show();
	$('#videos li.1').hide();
	$('#videos li.3').hide();
	return false;
});

$('a.2').click(function (){
	$('#videos li.3').show();
	$('#videos li.2').hide();
	$('#videos li.1').hide();
	return false;
});

$.fn.cycle.updateActivePagerLink = function(pager, currSlideIndex) { 
    $(pager).find('li').removeClass('active-slide') 
        .filter('li:eq('+currSlideIndex+')').addClass('active-slide'); 
}; 

$('.manuel_themen').cycle({ 
	    fx:     'fade',
	    sync: false, 
        speed:   300, 
        timeout: 0, 
        pager:  '#themen-nav',
        pagerEvent: 'mouseover',
    	pauseOnPagerHover: true,
        pagerAnchorBuilder: function(idx, slide) {
            // return sel string for existing anchor
            return '#themen-nav li:eq(' + (idx) + ') a';
        } 
	});
});
