$(document).ready(function() {
    $('img.colorchange').click(function(){
        // get id value
        var current_id = this.id;
        
        // set src image changers
        $('img.colorchange').attr('src', '../_images/color-non-active.gif');
        this.src = '../_images/color-active.gif';

        // change text
        $('p.color-more-info').hide();      // hide all more info
        $('p#'+current_id+'-description').show();

        // change picture
        $('img#more-info-picture').attr('src','../_images/_nl/header-'+current_id+'.jpg');
		 $('img#more-info-picturefr').attr('src','../_images/_fr/header-'+current_id+'.jpg');
    });
});