$(document).ready(function() {

	var ignoreMe = document.body.offsetWidth;
	var ignoreMe = document.body.offsetLeft;


	$('#gallery a').lightBox({fixedNavigation:true});

	if (!jQuery.browser.msie) {
	}
		$('#videoBt').bind("click", function() {
			// alert("load video page");
			document.location="/pages/de/video/index.html";
		});

		$('.gal img').bind("mouseenter", function() {
			var self = this;
			$('.gal img').animate({"opacity":.5}, { duration: 250, easing: "swing", queue: false} );
			$('.restgal').animate({"opacity":.5}, { duration: 250, easing: "swing", queue: false} );
			$(self).animate({"opacity":1}, { duration: 250, easing: "swing", queue: false} );
		}).bind("mouseleave", function() {
			var self = this;
			$('.gal img').animate({"opacity":1}, { duration: 250, easing: "swing", queue: false} );
			$('.restgal').animate({"opacity":1}, { duration: 250, easing: "swing", queue: false} );
		});

});  

