$(document).ready(function() {
	$("#nav a img.hover").hide();
	$("#nav a").mouseover(function () {
		$(this).children("img.first").hide();
		$(this).children("img.hover").show();
	});
	$("#nav a").mouseout(function () {
		$(this).children("img.hover").hide();
		$(this).children("img.first").show();
	});
	$('#gallery a').lightBox({
		overlayBgColor: '#FFF',
		overlayOpacity: 0.6,
		imageLoading: '/skin/images/loading.gif',
		imageBtnClose: '/skin/images/close.gif',
		imageBtnPrev: '/skin/images/prev.gif',
		imageBtnNext: '/skin/images/next.gif',
		containerResizeSpeed: 350,
		txtImage: 'Bild',
		txtOf: 'von'
	});

});
