//w.media jquery calls

$(function(){
	// Cyclebox
	//$(".cyclebox").cycle('fade');
	
	//Animationen: blindX, blindY, blindZ, cover, curtainX, curtainY, fade, fadeZoom, growX, growY, scrollUp, scrollDown, scrollLeft, scrollRight, scrollHorz, scrollVert, shuffle, slideX, slideY, toss, turnUp, turnDown, turnLeft, turnRight, uncover, wipe, zoom
	$(".oredcycle").cycle({ 
		fx:     'scrollDown',
		timeout: 8000, 
		after:   onAfter 		//Texteinblendung cycletext nach Beendigung
	});
	$(".magentocycle").cycle({ 
		fx:     'toss',
		timeout: 4000, 
	});
	$(".ref1cycle").cycle({ 
		fx:     'fade',
		timeout: 2500, 
	});
	$(".ref2cycle").cycle({ 
		fx:     'fade',
		timeout: 2700, 
	});
	$(".ref3cycle").cycle({ 
		fx:     'fade',
		timeout: 2900, 
	});
	
	
	
	// Accordion
	$("#accordion").accordion({ header: "h3" });

	// Tabs
	$("#tabs").tabs();

	// Datepicker
	$("#datepicker").datepicker({
		inline: true
	});
});
