jQuery(document).ready( function(){

    // Choix de la couleur au click sur le RAL
    jQuery('#ral div[id^=ral-]').live('click', function () {
        var ral_id = this.id.replace(/ral-/gi, '');
        jQuery('#product-options-wrapper .input_ral').val(ral_id);
        jQuery('#couleur-choisie-val').html('RAL ' + ral_id);
        jQuery('#ral div[id^=ral-]').removeClass('hover');
        jQuery(this).addClass('hover');
    });
});
