/*
//Header-Ueberblendung
var timer = 7; // Sekunden wann gewechselt werden soll
var count = 1;


function changeHeader() {
	var maxItems = $(".header_img").length;
	var prev = (count-1);

	if (count >= maxItems) {
		count = 0;
		prev = (maxItems-1);
	}

	if ( $(".header_img:eq(" + prev + ")").css("display") != "none" )
		$(".header_img:eq(" + prev + ")").fadeOut();

	$(".header_img:eq(" + count + ")").fadeIn();

	count++;
}




$(document).ready(function(){
	
	//Header-Ueberblendung
	window.setInterval("changeHeader()", timer * 1000);
	
	
	// jcarousel	
	jQuery('#mycarousel').jcarousel({
	   	scroll: 4
	});

	// Fancybox
	$("a[rel=group]").fancybox({
		'transitionIn'	: 'none',
		'transitionOut'	: 'none',
		'titlePosition' : 'over'
	});
    
    
    // Thumb-Hover Toggles
    $('.hover_thumb01').hover ( function () 
	{
		$(".thumb_hover01").toggle ();
	} );
	
	$('.hover_thumb02').hover ( function () 
	{
		$(".thumb_hover02").toggle ();
	} );
	
	$('.hover_thumb03').hover ( function () 
	{
		$(".thumb_hover03").toggle ();
	} );
	
	$('.hover_thumb04').hover ( function () 
	{
		$(".thumb_hover04").toggle ();
	} );
	
	$('.hover_thumb05').hover ( function () 
	{
		$(".thumb_hover05").toggle ();
	} );
	
	$('.hover_thumb06').hover ( function () 
	{
		$(".thumb_hover06").toggle ();
	} );
	
	$('.hover_thumb07').hover ( function () 
	{
		$(".thumb_hover07").toggle ();
	} );
	
	$('.hover_thumb08').hover ( function () 
	{
		$(".thumb_hover08").toggle ();
	} ); 
	
	$('.hover_thumb09').hover ( function () 
	{
		$(".thumb_hover09").toggle ();
	} ); 
});
*/
