// JavaScript Document

$(document).ready(function() {		
	if($('#bild .images img').length > 1){	
		$('#bild .images').cycle({
			fx: 'fade',
			timeout: 4000,
			speed: 1000
		});
	
		$('.imgtoggleleft').click(function() {
			$('#bild .images').cycle('prev');
		});
	
		$('.imgtoggleright').click(function() {
			$('#bild .images').cycle('next');
		});
		
		$('#bild').mouseenter(function() {
			clearTimeout(th);
			$('#bild .images').cycle('pause');
			$('.imgtoggle').animate({
		   		bottom: 0
			}, 250, function() {
			    // Animation complete.
			});
		});
		$('#bild').mouseleave(function() {
			$('#bild .images').cycle('resume');
			$('.imgtoggle').animate({
		   		bottom: -29
			}, 250, function() {
			    // Animation complete.
			});
		});				
	} else {
		$('.imgtoggle').css('display','none');
	}
	
	togglehide = function(){
		$('.imgtoggle').animate({
			bottom: -29
		}, 250, function() {
			// Animation complete.
		});
	}
	
	th = setTimeout('togglehide()',2000);
});	
