

	jQuery(document).ready(function () {
		
		jQuery('.header-image-start-img').css({'opacity': '0.3'});
		
		jQuery('.header-image-start-link').bind('mouseenter', function() {
			jQuery('.header-image-start-img', this).fadeTo(500, 1);
		});
		
		jQuery('.header-image-start-link').bind('mouseleave', function() {
			jQuery('.header-image-start-img', this).fadeTo(500, 0.3);
		});
		
		
		var popupImage = jq.milon.cfg.popup_start || '/fileadmin/Startseite/pop_up_10gruende.gif';
		
		jQuery('#content a:has(img)').attr('href', popupImage);
		
		
	});