
/* Coin Slider - Initialisierung
--------------------------------------*/
$(document).ready(function() {
	$('#contentMainEyecatcher').coinslider({ 
		width: 742, // width of slider panel
		height: 257, // height of slider panel
		spw: 7, // squares per width
		sph: 5, // squares per height
		delay: 5000, // delay between images in ms
		sDelay: 30, // delay beetwen squares in ms
		opacity: 0.7, // opacity of title and navigation
		titleSpeed: 500, // speed of title appereance in ms
		effect: '', // random, swirl, rain, straight, '' (whole range)
		navigation: true, // prev next and buttons
		links : false, // show images as links 
		hoverPause: true, // pause on hover	
		prevLabel : '&laquo', // prev-button label
		nextLabel : '&raquo' // next-button label
	});
});



/* Tab - Initialisierung
--------------------------------------*/
$(document).ready(function() {
    $(".tabs").accessibleTabs({
        tabhead: '.csc-default h1:first-child',
		tabbody: '.csc-default',
        fx: "fadeIn",
		currentInfoText: 'Aktiver Tab:'
    });
});


