<!--

$(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('content/images/small')==-1){
       
         if($(this).attr("alt")){
           var title = $(this).attr("alt");
         }else{
           var title = '';
         }
         
         $(this).wrap('<a href="'+img_href+'" class="thickbox" rel="group" title="'+title+'"></a>');
       }
     });     

})

-->

