$(function() {

	// Navigation Hover für IE
	if ($.browser.msie) {
		// Header-Hover
		$('#header').hover(function() { $(this).addClass('hover'); }, function() { $(this).removeClass('hover'); });
		// LI-Hover
		$('ul#navigation>li').hover(function() { $(this).addClass('hover'); }, function() { $(this).removeClass('hover'); });
	}

	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').each(function() {
		$(this).find('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'
		   });
		});


});﻿
