$(document).ready(function(){
// Agentur-SubMenu sichtbar machen
	$('.agentur').hover (
		function() {
			$('#subnav_agentur').show();
		},
		function() {
			$('#subnav_agentur').hide();
		});
	
// Quadrat bei aktivem Agentur-SubMenu behalten
	$('#subnav_agentur').hover(
		function() {
			$('.agentur').addClass('nav_active');
		},
		function() {
			$('.agentur').removeClass('nav_active');
		}
	);
});