// Startside Slider
$(window).load(function() {

	var total = $('#slider img').length;
	var rand = Math.floor(Math.random()*total);

	$('#slider').nivoSlider({
		effect:'fade', //Specify sets like: 'fold,fade,sliceDown'
		slices:1,
		animSpeed:400, //Slide transition speed
		pauseTime:6000,
		startSlide:rand, //Set starting Slide (0 index)
		directionNav:true, //Next and Prev
		directionNavHide:false, //Only show on hover
		controlNav:false, //1,2,3...
		keyboardNav:true, //Use left and right arrows
		pauseOnHover:false, //Stop animation while hovering
		manualAdvance:false //Force manual transitions
	});
});
// Startside Slider fadeIn
/*
$(document).ready(function() {
	$('#teaser #slider').delay(100).fadeIn(1000);	
	$('#label').delay(300).animate({ // fadeIn Label
		opacity: 1,
		marginBottom: '20px',
	}, 600 );
});*/
