jQuery.noConflict();
jQuery(function() {
	jQuery(".news-list-container-homepage").accordion({header: '.newsAccordHead', event: 'mouseover'});
});
jQuery(function() {
	jQuery("div#mainnavigation ul li ul li a").mouseover(
		function() {
			jQuery(this).parent().find("span.infotext").height(jQuery(this).parent().parent().height()-21);
			jQuery(this).parent().find("span.infoTextBorder").height(jQuery(this).parent().parent().height()-30);
			jQuery(this).parent().find("span.infotext").css("display", "block");
		}
	).mouseout(
		function(){
			jQuery(this).parent().find("span.infotext").css("display", "none");
    	}
	);
});
jQuery(document).ready(function() {
	jQuery("#select_country").bind('change', function() {
		if (!jQuery("#select_country option:first").attr('selected')) {
			jQuery("#umkreissuche").hide();
			jQuery("#umkreissuche input").val("");
		} else {
			jQuery("#umkreissuche").show(5);
		}
	});
	jQuery("#select_country").trigger('change');
});
