
                        //non affichage des erreurs (ie)
                        var curvyCornersVerbose = false; 
            
                        function checkInternetExplorer() {
                            var rv = -1; // Return value assumes failure.
                            if (navigator.appName == 'Microsoft Internet Explorer') {
                                return true;
                                /*var ua = navigator.userAgent;
                                var re = new RegExp("MSIE ([0-9]{1,}[\.0-9]{0,})");
                                if (re.exec(ua) != null)
                                    rv = parseFloat(RegExp.$1);*/
                            }else{
                                return false;
                            }
                            //return rv;
                        }

                        var IE6 = false;
                        var IE7 = false;
                        var IE8 = false;
                        var IE9 = false;
                        var IE = false;
                        if (window.navigator.appName == 'Microsoft Internet Explorer') IE = true;

                        var strChUserAgent = navigator.userAgent;
                        var intSplitStart = strChUserAgent.indexOf("(",0);
                        var intSplitEnd = strChUserAgent.indexOf(")",0);
                        var strChMid = strChUserAgent.substring(intSplitStart, intSplitEnd);

                        if(strChMid.indexOf("MSIE 6") != -1) IE6 = true;
                        if(strChMid.indexOf("MSIE 7") != -1) IE7 = true;
                        if(strChMid.indexOf("MSIE 8") != -1) IE8 = true;
                        if(strChMid.indexOf("MSIE 9") != -1) IE9 = true;

            
                        $(function(){
                            var settings = {
                                tl : { radius : 8},
                                tr : { radius : 8},
                                bl : { radius : 0},
                                br : { radius : 0},
                                antiAlias : true,
                                autoPad : true
                            };
                            if(!IE6){
                                curvyCorners(settings, ".mainmenu");

                            }
                        });

                    $(function(){
                        if( $('.menutop').css("display")=="block" ){


                                var settings = {
                                    tl : { radius : 4},
                                    tr : { radius : 4},
                                    bl : { radius : 4},
                                    br : { radius : 4},
                                    antiAlias : true,
                                    autoPad : true,
                                    validTags : ["div"]
                                };
                                if(!IE6){
                                    curvyCorners(settings, ".menutop");

                                }

                       }});

                    
                    var settingsBottom = {
                        tl : { radius : 0},
                        tr : { radius : 0},
                        bl : { radius : 4},
                        br : { radius : 4},
                        antiAlias : true,
                        autoPad : true,
                        validTags : ["div"]
                    }
                    if(!IE6){
                        $(function(){
                            setTimeout(function(){
                                curvyCorners(settingsBottom, "bottompage");

                            }, 3);
                        });
                    }
                 
                    if( !IE6 ){
                        $(function(){
                            setTimeout(function(){
                                $('div.personal1').corner("round tl tr bl br 8px");
                                if( checkInternetExplorer() && (!IE6) && (!IE9) ){
                                    $('div.extrapersonal1').corner("round tl tr bl br ");
                                }else{
                                    $('div.extrapersonal1').corner("round tl tr bl br 8px");
                                }
                            }, 1);
                        });
                    }
                
                            if( !IE6 ){
                                $(function(){
                                    setTimeout(function(){
                                        $('.xxxx').corner("round bl br 8px");
                                        $('.xxxx').corner("round tl tr 8px");
                                        $('.xxxx').corner("round 8px");
                                        if( checkInternetExplorer() && (!IE6) && (!IE9) ){
                                            $('div.extrapersonal1').corner("round tl tr bl br ");
                                        }else{
                                            $('div.extrapersonal1').corner("round tl tr bl br 8px");
                                        }
                                    }, 1);
                                });
                            }
                        
