 $(document).ready(function(){
                $("#show_6_10").click(function() {
                    $("#show_6_10").hide();
                    $("#hide_6_10").fadeTo(0, 0.10);
                    $("#hide_6_10").attr('id', 'not_hide_6_10');
                    $("#not_hide_6_10").fadeTo('slow', 1);
                });
                $("#show_11_15").click(function() {
                    $("#show_11_15").hide();
                    $("#hide_11_15").fadeTo(0, 0.10);
                    $("#hide_11_15").attr('id', 'not_hide_11_15');
                    $("#not_hide_11_15").fadeTo('slow', 1);
                });
                $('#bordure1').mouseleave(function(){
                    $("#not_hide_6_10").fadeTo('slow', 0, function(){
                        $("#not_hide_6_10").attr('id', 'hide_6_10');
                        $("#show_6_10").show();
                    });
                    $("#not_hide_11_15").fadeTo('slow', 0, function(){
                        $("#not_hide_11_15").attr('id', 'hide_11_15');
                        $("#show_11_15").show();
                    });
                });
            });
