$(document).ready(function(){
	yd_init();
	$('a.mediabox').mediabox({autoplay:1});
});

function yd_init() {
	$('a[href^=index.php/kontakt/headquarters]').click(function() {
		$('.hidden').slideToggle("slow");
		return false;
	});
	$('a[href^=index.php/kontakt/serviceersatz]').click(function() {
		$('.hidden').slideToggle("slow");
		return false;
	});
	$('a[href$=pdf]').attr("target", "_blank");
	$('ul.multimenu').hide();
	$('.multimenu').click(function() {
		var identifierer = $(this).attr('id');
		identifierer = identifierer+'list';
		$('#'+identifierer).slideToggle("normal");
	});
	if (!$('#testzentrum .error').length) {
	    $('#testzentrum').hide();
	}
	$('#testzentrum_index #titletext a').attr('href', window.location.pathname+'#form').click(function() {
	    $('#testzentrum').slideToggle("normal");
	});
	$('#submenu a.mpopup').hover(function(){
	   $('#submenu .popup').hide();
	   $(this).next('div.popup').show();
	},
	function() {
	  $('#submenu .popup').hide();
	});
}