jQuery(document).ready(function()
{

    var ie6 = (navigator.appName == "Microsoft Internet Explorer" && parseInt(navigator.appVersion) == 4 && navigator.appVersion.indexOf("MSIE 6.0") != -1);

    if(ie6) {
    //jQuery(document).pngFix();
    DD_belatedPNG.fix('div, img, a, ul, li, li:hover');
//      DD_belatedPNG.fix('#main-inner-left div, #main-inner-left img, #main-inner-left a, #main-inner-left input');
//      DD_belatedPNG.fix('#main-inner-right div, #main-inner-right a, #main-inner-right img, #main-inner-right ul, #main-inner-right li');
    }

	jQuery("#subindustry").hide();
	jQuery("#subunternehmen").hide();
	jQuery("#subhealth").hide();

	jQuery(".nav1").mouseenter(function() {
//		jQuery("#subindustry").hide();
//		jQuery("#subunternehmen").hide();
		jQuery("#subindustry").css("display","none");
		jQuery("#subunternehmen").css("display","none");
//		jQuery("#subhealth").fadeIn("slow");
                jQuery("#subhealth").css("display","block");
//		jQuery("#teaserbackground").animate({opacity: 0.6});
                jQuery("#teaserbackground").css("opacity","0.6");
                jQuery("#teaserbackground img").css("filter","alpha(opacity=60)");
	});
	jQuery("#subhealth").mouseleave(function() {
		jQuery("#subhealth").hide();
//		jQuery("#teaserbackground").animate({opacity: 1});
                jQuery("#teaserbackground").css("opacity","1");
                jQuery("#teaserbackground img").css("filter","alpha(opacity=100)");
	});

	jQuery(".nav2").mouseenter(function() {
//		jQuery("#subhealth").hide();
//		jQuery("#subunternehmen").hide();
		jQuery("#subhealth").css("display","none");
		jQuery("#subunternehmen").css("display","none");
//		jQuery("#subindustry").fadeIn("slow");
                jQuery("#subindustry").css("display","block");
//		jQuery("#teaserbackground").animate({opacity: 0.6});
                jQuery("#teaserbackground").css("opacity","0.6");
                jQuery("#teaserbackground img").css("filter","alpha(opacity=60)");
	});
	jQuery("#subindustry").mouseleave(function() {
                jQuery("#subindustry").hide();
//              jQuery("#teaserbackground").animate({opacity: 1});
                jQuery("#teaserbackground").css("opacity","1");
                jQuery("#teaserbackground img").css("filter","alpha(opacity=100)");
        });

	jQuery(".nav3").mouseenter(function() {
//		jQuery("#subindustry").hide();
//		jQuery("#subhealth").hide();
		jQuery("#subindustry").css("display","none");
		jQuery("#subhealth").css("display","none");
//		jQuery("#subunternehmen").fadeIn("slow");
                jQuery("#subunternehmen").css("display","block");
//		jQuery("#teaserbackground").animate({opacity: 0.6});
                jQuery("#teaserbackground").css("opacity","0.6");
                jQuery("#teaserbackground img").css("filter","alpha(opacity=60)");
	});  
	jQuery("#subunternehmen").mouseleave(function() {
                jQuery("#subunternehmen").hide();
//              jQuery("#teaserbackground").animate({opacity: 1});
                jQuery("#teaserbackground").css("opacity","1");
                jQuery("#teaserbackground img").css("filter","alpha(opacity=100)");
        });
	
	jQuery("#content_breadcrumbs").mouseenter(function() {
		jQuery("#subindustry").hide();
		jQuery("#subhealth").hide();
		jQuery("#subunternehmen").hide();
//		jQuery("#teaserbackground").animate({opacity: 1});
                jQuery("#teaserbackground").css("opacity","1");
                jQuery("#teaserbackground img").css("filter","alpha(opacity=100)");
	});  
	
});