(function($) {
	$(document).ready(function() {
		$('#primary_menu>ul>li').mouseenter(function() {
			$('#nav_slider').animate({
				left: $(this).position().left + 60,
				width: $(this).width()
			});
		});
		var active_li = $('#primary_menu>ul>li.current-menu-item');
		if (active_li.size() == 0) {
			active_li = $('#primary_menu>ul>li:has(li.current-menu-item)');
			if (active_li.size() == 0) {
				active_li = $('#primary_menu>ul>li:first');
			}
		}
		active_li.mouseenter();
		$('a.external').attr('target', '_blank');
		$(".gallery-icon a").each(function () {
			$(this).replaceWith($(this).find('img'));
		});
		$('.team_item').mouseenter(function() {
			$(this).find('.details').animate({top: 235}, 'fast');
		}).mouseleave(function() {
			$(this).find('.details').animate({top: 290}, 'fast');
		});
		if ($('body').hasClass('home')) {
			if (flickrHomeImages && $.isArray(flickrHomeImages)) {
				$.each(flickrHomeImages, function() {
					var i = new Image();
					i.onload = function() {
						$('#flickrRotator').append('<div class="item"><img src="' + this.src + '" style="position:absolute;left:' + Math.round((960 - this.width) / 2) + 'px;top:' + Math.round((390 - this.height) / 2) + 'px;" alt="" /></div>').cycle({ timeout: 8000 });
					}
					i.src = this;
				});
			}
			$('#aktuelleRotator').cycle({ fx: 'scrollLeft', timeout: 8000 });
			$('#angebotRotator').cycle({ timeout: 8000 });
			$('#newsRotator, #projektRotator').cycle({
				timeout: 8000,
				before: function() {
					var _l = $(this).find('a.box_link').clone();
					$(this).parent().next().find('a.box_link').remove();
					$(this).parent().next().append(_l);
				}
			});
		}
		if ($('body').hasClass('page-id-628')) {
			window.setInterval(function() {
				var alts = $('.team_item:has(img.weird)');
				var r = Math.floor(Math.random() * alts.size());
				alts.filter(':eq(' + r + ')').addClass('weird');
				window.setTimeout(function() {
					$('.team_item:has(img.weird)').removeClass('weird');
				}, 500);
			}, 3000);
		}
	});
})(jQuery);
