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

$(document).ready(function() {
	// Init gallery
  var gallery_attributes = {
   overlayBgColor: '#999',
   overlayOpacity: 0.6,
   txtImage: '',
   txtOf: 'von',
   fixedNavigation: true,
   imageLoading: '/gemeinde/we/images/lightbox/lightbox-ico-loading.gif',
   imageBtnPrev: '/gemeinde/we/images/lightbox/lightbox-btn-prev.gif',
   imageBtnNext: '/gemeinde/we/images/lightbox/lightbox-btn-next.gif',
  imageBtnClose: '/gemeinde/we/images/lightbox/lightbox-btn-close.gif',
   imageBlank: '/gemeinde/we/images/lightbox/lightbox-blank.gif'
  };
	if ($('#gallery1').length) { $('#gallery1 a').lightBox(gallery_attributes); }
  if ($('#gallery2').length) { $('#gallery2 a').lightBox(gallery_attributes); }
  if ($('#gallery3').length) { $('#gallery3 a').lightBox(gallery_attributes); }
  if ($('#gallery4').length) { $('#gallery4 a').lightBox(gallery_attributes); }
  if ($('#gallery5').length) { $('#gallery5 a').lightBox(gallery_attributes); }
  if ($('#gallery6').length) { $('#gallery6 a').lightBox(gallery_attributes); }
  if ($('#gallery7').length) { $('#gallery7 a').lightBox(gallery_attributes); }
  if ($('#gallery8').length) { $('#gallery8 a').lightBox(gallery_attributes); }
  if ($('#gallery9').length) { $('#gallery9 a').lightBox(gallery_attributes); }
  if ($('#gallery10').length) { $('#gallery10 a').lightBox(gallery_attributes); }
})

function toggleElement (element) {
  if ($(element).length) {
    if ($(element).style.display = 'none') {
      $(element).style.display = 'block';
    } else {
      $(element).style.display = 'none';
    }
  }
}