$(document).ready(function(){
				
				$('div.grid-480,div.corner,ul#answerslider li a,ul#answerslider li ul li,ul#article-list li.article-preview').corner();
				$('#header-dynamic.kontakt div.button-holding-80').corner('bl tl');
				// Buttons
				$('a.button-01').hover()
					.append('<span class="hover" />').each(function(){
						var span = $('> span.hover',this).css('opacity',0);
						$(this).hover(function(){
							span.stop().fadeTo(200, 1);
							}, function(){
							span.stop().fadeTo(200, 0);
						});					
					});
				// Hauptnavigation
				$('#navigation a').hover()
					.append('<span class="hover" />').each(function(){
						var span = $('> span.hover',this).css('opacity',0);
						$(this).hover(function(){
							span.stop().fadeTo(200, 1)
							}, function(){
							span.stop().fadeTo(200, 0)
						});					
					});
				// Frage Antwort
				$('ul#answerslider ul').hide();
				$('ul#answerslider li a').click(
					function(){
						$(this).next().slideToggle('fast');
					});
				// Detail Animation
				$('a.det-bubble').stop().hover(function(){
					$(this).offsetParent().find('div.positioner').animate({ left: '-260px' }, 350);
				},function(){
					$(this).offsetParent().find('div.positioner').animate({ left: '15px'}, 350);
				});
				
				$('#imagegal a,#gallery a').lightBox(); // Select all links that contains lightbox in the attribute rel
				
				$('#imagegal a img,#gallery a img').stop().hover(function(){
					$(this).fadeTo('slow', 1.0);
				},function(){
					$(this).fadeTo('slow', 0.5);
				});
				$('#imagegal a img,#gallery a img').fadeTo('slow', 0.3);

			});
