/*
 * script pour appliquer la colorbox aux images
 */

$(function(){
    $('img').each(function(){
        var oImage=$(this);
        if(oImage.hasClass("colorbox")){
            var strSrc=oImage.attr("src");
            var alt=oImage.attr("alt");
            oImage.wrap('<a rel="lien_image_box" href="'+strSrc+'" title="'+alt+'"/>');
        }
            
    });
    $("a[rel='lien_image_box']").colorbox({transition:"fade", height: '90%', width:'85%'});
})



