jQuery(document).ready(function($) {

	$('#menu').superfish({
		pathClass: 'activeparent',
		autoArrows: false,
		dropShadows: false,
		speed: 100
	});

	if ($('body.current_page_editionenuebersicht').length) {
		var $editions = $('a[rel="editions"]');
		$editions.colorbox({
			current: "Bild {current} von {total}",
			previous: "zurück",
			next: "vor",
			close: "schließen",
			innerWidth: 930
		});
	};
	$('.start_gallery').click(function() {
		$($editions[0]).trigger('click');
		return false;
	});
	
	$('#cboxLoadedContent .image').live('click', function(event) {
		$.fn.colorbox.next();
		return false;
	});
	
	initExternalLinks();
});

function initExternalLinks() {
	var h = window.location.host.toLowerCase();
	$("a[href^='http']:not([href^='http://" + h + "']):not([href^='http://www." + h + "']), a[href$='.pdf']").attr("target", "_blank");
}
