function doanimation(percent)
{
	$(".image.walk").animate(
		{backgroundPosition:percent+'%'},10000,
		function(){setTimeout(function(){doanimation(percent == 100 ? 0 : 100)},3000)});
}

$(document).ready(function(){
	
	$("ul.navi li,ul.child").mouseover(function(){
		$(this).children("ul.child").show();
	}).mouseout(function(){
		$(this).children("ul.child").hide();
	});
	
	$('.lightbox').each(function(){
		$(this).find("a").lightBox({
				fixedNavigation:true,
				txtImage: 'Foto',txtOf: 'von',
				imageLoading:images.loading,
				imageBtnPrev:images.prev,
				imageBtnNext:images.next,
				imageBtnClose:images.close,
				imageBlank:images.blank
			});
	})
	
	setTimeout(function(){doanimation(100);},5000);
});


