
// call functions
$(document).ready(function() {
	$('a[rel=external]').attr('target','_blank');

	// downloads -> analytics
	$("a[href^='/downloads']").click(function(){ pageTracker._trackPageview($(this).attr('href')); });

	if ($("body.orte").html() != null) {
		$.each($("#content h3 img"),function(key,obj) {
			$(obj).insertBefore($(obj).parent());
		});
		$("body.orte #content h3 img").remove();
		$("body.orte #content img").wrap('<div class="image"></div>');
		$("body.orte #content div.image:gt(0)").before('<div class="clear"></div>');
	}
	// Pressespiegel
	if ($("body.presse").html()!=null) {
		$(".col1").minmax();
		h = $(".colgroup12").height()+$(".colgroup23").height();
		if ($.browser.msie && parseInt(jQuery.browser.version) < 7) {
			$(".col1").height(h);
		}
		$(".col1").css("min-height", h + "px");
		$(".col1 ul ul").hide();
		$(".col1 ul > li > strong").wrap('<a href="#" class="month"></a>');
		$.each($(".col1 ul a.month"), function(key,obj) {
			$(obj).click( function() {
				$(".col1 ul ul").hide();
				$(this).parent().find("ul").toggle();
				return false;
			});
		});
	}

	// Galerie
	$(".fancy").fancybox();

});

// IE 6 and below
/////////////////
/*@cc_on
	@if (@_jscript_version < 5.7)

	@end
@*/