﻿$(function() {

	if($.browser.msie) {
		$('img[alt]').removeAttr('alt'); /* IE: alt-Tags entfernen, damit sie nicht als Mouseover auftauchen */
		$('table.lines tr:last-child').addClass('last-child');
	}
	
	if (jQuery.isFunction($.fn.lightBox )) $('#gallery.lightbox a').lightBox({
		overlayBgColor: '#000000',
		overlayOpacity: 0.8,
		imageLoading: '/images/lightbox/loading.gif',
		imageBtnClose: '/images/lightbox/close.gif',
		imageBtnPrev: '/images/lightbox/prev.gif',
		imageBtnNext: '/images/lightbox/next.gif',
		imageBlank: '/images/lightbox/blank.gif',
		containerBorderSize:   10,
		containerResizeSpeed: 400,
		containerResizeSpeed: 350,
		txtImage: 'Bild',
		txtOf: 'von',
		keyToClose: 'c',
		keyToPrev: 'p',
		keyToNext: 'n'
   });

});