jQuery( function($) {
	if ($('#homemenu').html() != null) {
		$('#homemenu').accordion({
			autoHeight: false,
		    header: 'h3'
		});
		$('#homemenu').accordion('option', 'autoHeight', false);
	}
	if ($('#homemenu_sub').html() != null) {
		$('#homemenu_sub').accordion({
			autoHeight: false,
		    header: 'h4'
		});
		$('#homemenu_sub').accordion('option', 'autoHeight', true);
	}
	if($("#map_expander").size()>0) {
		var height = $("#map").height();
		$("#map_expander").html('<a href="javascript:;"><img src="fileadmin/images/expander.gif" alt="erweitern" /></a>');
		$("#map_expander img").click(function(){
			if (/fileadmin\/images\/expander.gif$/.test($(this).attr('src'))) {
				$("#map").animate({
					height: "500px"
				}, 700, '', function(){
					$("#map_expander img").attr('src', 'fileadmin/images/expander_up.gif');
					map.checkResize();
				});
				$("#map_expander").animate({
					top: "492px"
				}, 700, '');
			} else {
				$("#map").animate({
					height: height+"px"
				}, 700, '', function(){
					$("#map_expander img").attr('src', 'fileadmin/images/expander.gif');
					map.checkResize();
				});
				$("#map_expander").animate({
					top: (height-8)+"px"
				}, 700, '');
			}
		});
	}
	if($(".infobox").html() != null) {
		$(".infobox img").click(function() {
			$(this).parent().toggleClass('showme');
		});
	}
});