$(document).ready(function(){
  
	
	/* spam protection for email adresses ***********************************************************************************************/
	
	/* Replace Text, Filter Level low */
  $('a.email_replace_low').nospam({
    replaceText: true,    // BOOLEAN, optional default false. If set to true, replaces matched elements' text with the e-mail address
    filterLevel: 'low'    // STRING, optional accepts 'low' or 'normal', default 'normal'.
                          // low: email/domain/tld
                          // normal: dlt/niamod/liame (email/domain/tld reversed)
  });
	
	
	/* Non link, Filter Level low */
	$('span.email').nospam({
    filterLevel:'low'
  });
  
  
  /* lightbox im lgin-bereich initialisieren*/
  $('#gallery a').lightBox();
	
	
	
	/* Lightbox laden */
	$('#gallery a').lightBox();
	
	
});
