jQuery(function(){
	jQuery("#moving-links a").hover(function(){
		jQuery(this).stop().animate({
			paddingLeft: "32px"
		}, 300);
	}, function(){
		jQuery(this).stop().animate({
			paddingLeft: "12px"
		}, 300);
	});
	jQuery(".top span").hover(function(){
		jQuery(this).stop().animate({
			fontSize:"26px"
			}, 300);
	}, function(){
		jQuery(this).stop().animate({
			fontSize: "22px"
		}, 300);	
	});
	
	$(function() {
		$('a[rel=lightbox]').lightBox();
	});
	
	$('#img-help').hover(
		function(){
			var elem = $('<div id="tooltip" style="position:absolute;padding:2px;color:black;background:#EAF8C1;border:1px solid black;">Bitte Benutzername und Passwort eintragen und Entertaste druecken</div>');
			$(this).after(elem);
		},
		function(){
			$('#tooltip').remove();
		}
	);
});

