/* -----------------------------------------------------------------------------
This website is powered by indual
Copyright (c) 2011 indual GmbH (www.indual.ch)                        
-------------------------------------------------------------------------------- */


/* + Functions ----------------------------------------------------------------- */
function init_gallery (id, gallery_attributes) {
	// does the gallery exists?
	if ($('#gallery'+id).length) {
		$('#gallery'+id+' a').lightBox(gallery_attributes);
	}
	return true;
}


/* + On load events ------------------------------------------------------------ */
$(document).ready(function() {
	
	// init
	var gallery_attributes = {
		overlayBgColor: '#999',
		overlayOpacity: 0.6,
		txtImage: '',
		txtOf: 'von',
		fixedNavigation: true,
		imageLoading: '/we/img/lightbox/lightbox-ico-loading.gif',
		imageBtnPrev: '/we/img/lightbox/lightbox-btn-prev.gif',
		imageBtnNext: '/we/img/lightbox/lightbox-btn-next.gif',
		imageBtnClose: '/we/img/lightbox/lightbox-btn-close.gif',
		imageBlank: '/we/img/lightbox/lightbox-blank.gif'
	};
	
	$('.block_image a').lightBox(gallery_attributes);
	
	// Slide Shows
	if ($('#header').length) {
		$('#header').cycle({ 
			fx:'fade', 
			speed:1000,
			timeout:4000
		});
	}
	
	// init galleries
	for (gallery_index=1 ; gallery_index<100 ; gallery_index++) {
		// init next box
		init_gallery(gallery_index, gallery_attributes);
	}
	
})
