/* Author: 

*/

$(".slideshow").ready(function() {
	
	if($(".slideshow img").length > 0) {
		$('.slideshow').cycle({
			delay: 200,
			speed: 800,
			timeout: 1500,
			fx: 'fade' // choose your transition type, ex: fade, scrollUp, shuffle, etc...
		});
	}
	
});
$(document).ready(function() {
	$('#news').delay(500).fadeIn('slow');
	var menuIndex = 1;
	$("#submenu li").each(function(){
		$(this).attr("data-index", menuIndex);
		$(this).find("a").prepend(menuIndex + "&hellip;");
		menuIndex = menuIndex + 1;
	})
	var activeMenuIndex = $(".current_page_item, #submenu .current_page_ancestor, #submenu .current_page_parent").attr("data-index");
	$("h2").addClass("ziffer-" + activeMenuIndex);
	$("#ziffer").addClass("ziffer-" + activeMenuIndex);
	
	$('.slideshow li img:first').show();
});





















