jQuery(document).ready(function() {    // Rundungen    jQuery("#col1").corner("10px tl br");    // Tabellen Rundungen    jQuery(".tabelle1 .tr-0 th").corner("12px tl br");    jQuery(".tabelle1 .tr-1 .td-last").corner("12px tr");    jQuery(".tabelle1 .tr-last .td-0").corner("12px bl");    jQuery(".tabelle1 .tr-last .td-last").corner("12px br");    jQuery(".tabelle2 .tr-0 .td-0").corner("8px tl");    jQuery(".tabelle2 .tr-0 .td-last").corner("8px tr");    jQuery(".tabelle2 .tr-last .td-0").corner("8px bl");    jQuery(".tabelle2 .tr-last .td-last").corner("8px br");    // Browseranpassung    var autowidth1  = (jQuery("#autoheight1").width())-3;    var autoheight1 = jQuery("#autoheight1").parent().height();    jQuery("#autoheight1").css("height",autoheight1+"px");    var autowidth2  = (jQuery("#autoheight2").width())-3;    var autoheight2 = (jQuery("#autoheight2").parent().height())+1;    jQuery("#autoheight2").css("height",autoheight2+"px");    var autowidth3  = (jQuery("#autoheight3").width())-3;    var autoheight3 = (jQuery("#autoheight3").parent().height())-1;    jQuery("#autoheight3").css("height",autoheight3+"px");    var autowidth4  = (jQuery("#autoheight4").width())-3;    var autoheight4 = (jQuery("#autoheight4").parent().height())-1;    jQuery("#autoheight4").css("height",autoheight4+"px");    var autowidth5  = (jQuery("#autoheight5").width())-3;    var autoheight5 = (jQuery("#autoheight5").parent().height())-1;    jQuery("#autoheight5").css("height",autoheight5+"px");    var autowidth6  = (jQuery("#autoheight6").width())-3;    var autoheight6 = (jQuery("#autoheight6").parent().height())+1;    jQuery("#autoheight6").css("height",autoheight6+"px");    if(jQuery.browser.mozilla) {        autoheight6 = autoheight6-1;        jQuery("#autoheight1").width(autowidth1);        jQuery("#autoheight2").width(autowidth2);        jQuery("#autoheight3").width(autowidth3);        jQuery("#autoheight4").width(autowidth4);        jQuery("#autoheight5").width(autowidth5);        jQuery("#autoheight6").css("height",autoheight6+"px").width(autowidth6+1);    }    if(jQuery.browser.webkit) {        jQuery("#autoheight1").width(autowidth1-1);        jQuery("#autoheight2").width(autowidth2-1);        jQuery("#autoheight3").width(autowidth3-1);        jQuery("#autoheight4").width(autowidth4-1);        jQuery("#autoheight5").width(autowidth5-1);        jQuery("#autoheight6").css("height",autoheight6+"px").width(autowidth6);    }    if(jQuery.browser.opera) {        jQuery("#autoheight1").width(autowidth1);        jQuery("#autoheight2").width(autowidth2);        jQuery("#autoheight3").width(autowidth3);        jQuery("#autoheight4").width(autowidth4);        jQuery("#autoheight5").width(autowidth5);        jQuery("#autoheight6").css("height",autoheight6+"px").width(autowidth6+1);    }    if (jQuery.browser.msie && jQuery.browser.version >= 7) {        jQuery("#autoheight1").width(autowidth1);        jQuery("#autoheight2").width(autowidth2);        jQuery("#autoheight3").width(autowidth3);        jQuery("#autoheight4").width(autowidth4);        jQuery("#autoheight5").width(autowidth5);        jQuery("#autoheight6").css("height",autoheight6+"px").width(autowidth6+1);    }    if (jQuery.browser.msie && jQuery.browser.version > 8) {        jQuery("#autoheight1").width(autowidth1);        jQuery("#autoheight2").width(autowidth2);        jQuery("#autoheight3").width(autowidth3);        jQuery("#autoheight4").width(autowidth4);        jQuery("#autoheight5").width(autowidth5);        jQuery("#autoheight6").css("height",autoheight6+"px").width(autowidth6+1);    }    // Browseranpassung --END--////    jQuery("#col1_content ul li").mouseover(function() {//            jQuery(this).stop().animate({//                left:2,//                opacity:1//            },'fast');////    }).mouseleave(function() {//            jQuery(this).stop().animate({//                left:0,//                opacity:1//            },'fast');//    });//    jQuery("#col1_content ul li").mouseover(function() {//        if(jQuery(this).is('.current')) {//        }//        else {//            jQuery(this).stop().animate({//                left:2,//                opacity:1//            },'fast');//            jQuery(this).stop().animate({//                left:0,//                opacity:1//            },'fast');//        }//    }).mouseleave(function() {////    });//    jQuery("#col1_content ul li").mouseover(function() {//        jQuery(this).fadeTo('slow', 0.8);//    }).mouseout(function() {//        jQuery(this).fadeTo('slow', 1);//    });//    jQuery('.text_teaser_grau_r_fade img, .text_teaser_fade img').hide();//    jQuery('.text_teaser_grau_r_fade img, .text_teaser_fade img').fadeIn(2500);////    jQuery('.text_teaser_grau_r_clip, .text_teaser_clip').hide();//    jQuery('.text_teaser_grau_r_clip, .text_teaser_clip').show("clip",{//        direction: "vertical"//    }, 1000 );//////    jQuery('.text_teaser_grau_r_slide img, .text_teaser_slide img').hide();//    jQuery('.text_teaser_grau_r_slide img, .text_teaser_slide img').show(1000);// tooltip mainMenu//    jQuery(".mainMenu ul li a[title]").tooltip({//        tipClass: 'mainMenu_tooltip',//        position: 'bottom left',//        offset: [-25, -1],//        effect: 'toggle',//        opacity: 0.7,//        delay: 0//    });    // image_zoom//    jQuery('.lightbox').fancybox({//        'hideOnContentClick': true,//        'titlePosition':      'outside',//        'overlayColor':       '#fff',//        'transitionIn':       'elastic',//        'transitionOut':      'elastic',//        'easingIn':           'swing',//        'easingOut':          'swing'//    });});
