/* $Id: wc_slide.js 50844 2008-06-04 17:01:28Z sboulais $ */
if(typeof Prototype != "undefined")
{
    Event.observe(window, "load", function() {
        $$("div#WC_slide a").each(function(elt) {
            Event.observe(elt.firstChild, "contextmenu", function(evt) { Event.stop(evt) });
            Event.observe(elt, "click", function(evt) {
                try {
                    xt_med("C", "", "bandeau_de_profils_cibles", "N", elt.href);
                    Event.stop(evt);
                }
                catch(e) {};
            });
        })
    });
};