
$(document).ready(function(){

	initLightbox();
	initKopfgalerie();
});


function initLightbox(){
	$("a[rel='lightbox']").colorbox({
		current : "",
		previous : "",
		next : "",
		close : "",
		rel : 'nofollow'
	});	
}


function initKopfgalerie() {
	if($('#slider').length > 0){
	$(window).load(function() {
		$('#slider').nivoSlider({
			effect : 'random',
			directionNav : false,
			directionNavHide : true,
			captionOpacity : 1,
			boxCols : 6, // For box animations
			boxRows : 3, // For box animations
			animSpeed : 750, // Slide transition speed
			pauseTime : 6000,
			borderRadius: 6
		});
	});
	}
}

