

function loadAnimation () {
	jQuery(document).ready( function() {
		jQuery("#cwrap div").each( function () {
			jQuery(this).fadeIn("slow");
			jQuery('#logo').show();
		});
		jQuery(".time").hide();
		
	});
}

function slideShow() {
	jQuery('.ssImg').cycle({ 
		fx: 'fade',
		speed: 2500,
		timeout: 5000,
		pause: 1 
	});
}

function slideShow1() {
	jQuery('.ssImg').cycle({ 
		fx:   'shuffle', 
    shuffle: { 
        top:  -140, 
        left:  140 
    }, 
    easing: 'backinout', 
    delay: -500
    	
	});
}


function startStempel() {
	var item = '<img alt="" src="fileadmin/redaktion/bilder/aktionen/bonuskarten/stempel.gif" />';
	jQuery('#fce-bonusStoerer').fadeIn('slow');
	jQuery('#fce-bonusAni img').hide();
	var i = 1;
		jQuery('#fce-bonusAni').everyTime(800, "show", function(){
			if (i == 8) {
				jQuery('#fce-bonusStoerer').fadeOut('slow');
			}
			if (i <= 9) {
				jQuery(this).append(item);
			}
			if (i == 10) {
				jQuery(this).append(item);
				jQuery(this).stopTime("show");
				jQuery(this).oneTime(1800, "start", function(){
					jQuery('#fce-bonusAni img').fadeOut('slow');
				});
				jQuery(this).oneTime(5000, "start", function(){
					startStempel();
				});
			}
			i++;
		});
}
