$(document).ready(function(){
	$('#menu li:has(ul)').each(function(){
		var ul = $(this).find('> ul');
		var a = $(this).find('> a');
		$(this).hover(function(){
			a.addClass('hover');
			ul.stop(true, true).slideDown();
		}, function(){
			ul.stop(true, true).slideUp('normal', function(){
				a.removeClass('hover');
			});
		});
	});
	
	$('.colorbox').colorbox();
	
	if($('#home_header_fotos > div').length > 1){
		$('#home_header_fotos > div:gt(0)').hide();
		
		function home_fotos_loop(){
			$('#home_header_fotos > div:eq(1)').fadeIn('slow', function(){
				$('#home_header_fotos > div:eq(0)').hide().appendTo('#home_header_fotos');
				
				setTimeout(home_fotos_loop, 5000);
			})
		}
		
		setTimeout(home_fotos_loop, 5000);
	}
	
	if($('#sponsoren div').length > 1){
		$('#sponsoren div:gt(0)').hide();
		
		function home_sponsor_loop(){
			$('#sponsoren div:eq(0)').fadeOut('normal', function(){
				$(this).appendTo('#sponsoren');
				
				$('#sponsoren div:eq(0)').fadeIn('normal', function(){
					setTimeout(home_sponsor_loop, 2000);
				});
			})
		}
		
		setTimeout(home_sponsor_loop, 2000);
	}
});
