$(document).ready(function() {
	
	// Lightbox Initialisierung
	$('a[rel*=lightbox]').lightBox({
		fixedNavigation: true,
		overlayBgColor: '#000',
		overlayOpacity: 0.8,
		imageLoading: '/assets/js/jquery-lightbox/images/loading.gif',
		imageBtnClose: '/assets/js/jquery-lightbox/images/closelabel.gif',
		imageBtnPrev: '/assets/js/jquery-lightbox/images/prevlabel.gif',
		imageBtnNext: '/assets/js/jquery-lightbox/images/nextlabel.gif',
		containerResizeSpeed: 350,
		txtImage: 'Bild',
		txtOf: 'von',
		currentLocation: currentLocation
	});
	

	// jQuery SmoothScroll
	$('a[href*=#]').click(function() {
		
		// make sure it's the same location		
		if(location.pathname.replace(/^\//,'')==this.pathname.replace(/^\//,'') && location.hostname==this.hostname && this.hash.replace(/#/,''))
		{
			// get parameters
			var hash=this.hash;
			var target=$(hash).offset().top;
			
			// animate to target and set the hash to the window.location after the animation
			$("html:not(:animated),body:not(:animated)").animate({ scrollTop: target }, 500, function() { location.hash=hash; });
			
			// cancel default click action
			return false;
		}
		
	});

});
