jQuery(document).ready(function(){
    jQuery("ul.menu_gauche a.arbo").hover(
        function() {
            var image = jQuery("img", this).get(0);
            image.src = image.src.replace(/_off/, "_on");
        },
        function() {
            var image = jQuery("img", this).get(0);
            image.src = image.src.replace(/_on/, "_off");
        }
    );
    jQuery("ul.menu_gauche a.arbo, ul.menu_gauche a.arbo_on").click(function() {
        var image = jQuery("img", this).get(0);
        if (/plus_/.test(image.src)) {
            image.src = image.src.replace(/plus_/, "moins_");
            jQuery("ul:first", this.parentNode).slideDown("fast");
        } else {
            image.src = image.src.replace(/moins_/, "plus_");
            jQuery("ul:first", this.parentNode).slideUp("fast");
        }
        return false;
    });
	jQuery("div.menu_gauche a.arbo").hover(
        function() {
            var image = jQuery("img", this).get(0);
            image.src = image.src.replace(/_off/, "_on");
        },
        function() {
            var image = jQuery("img", this).get(0);
            image.src = image.src.replace(/_on/, "_off");
        }
    );
    jQuery("div.menu_gauche a.arbo, div.menu_gauche a.arbo_on").click(function() {
        var image = jQuery("img", this).get(0);
        if (/plus_/.test(image.src)) {
            image.src = image.src.replace(/plus_/, "moins_");
            jQuery("div:first", this.parentNode).slideDown("fast");
        } else {
            image.src = image.src.replace(/moins_/, "plus_");
            jQuery("div:first", this.parentNode).slideUp("fast");
        }
        return false;
    });
});