<!--

$(document).ready(function(){
    
    $(".div_html img").each(function (i) {
       var img_href = $(this).attr("src");
       if (img_href.indexOf('content/images/')!=-1 && img_href.indexOf('logo2')==-1 && img_href.indexOf('portrets2')==-1){
       
         if($(this).attr("title")){
           var title = $(this).attr("title");
         }else{
           var title = '';
         }
         
         $(this).wrap('<a href="'+img_href+'" class="thickbox" rel="group" title="'+title+'"></a>');
       }
     });

})

-->

