$(document).ready(function () {
	// Team-Matrix hover
	$('.csc-menu a, #team-matrix a').mouseover(function(){
		var el = $('a[href$="' + $(this).attr('href') + '"]');
		el.addClass('active');
	}) .mouseout(function(){
		var el = $('a[href$="' + $(this).attr('href') + '"]');
		el.removeClass('active');
    });
	
	// presse header kasten
	if (pressTitle = $('.presse .press-list-container, .news-list-container').find('.active span').html()) {
		var html = '<div class="box_header"><h1>' + pressTitle;
		if (pressCat = $('.subnav').find('.active span').html()) {
			html += ' &#150 ' + pressCat;
		}
		html += '</h1></div>';
		$('.box2_content').prepend(html);
	}
	
	// News-teaser auf Startseite
	$('.news-teaser-container li').click(function(){
		window.location.href = $(this).find('a:first').attr('href');
	});
	
	
});