<!--

function getObj(name)
{
    if (document.getElementById)
    {
   	this.obj = document.getElementById(name);
  	this.style = document.getElementById(name).style;
    }
    else if (document.all)
    {
  	this.obj = document.all[name];
  	this.style = document.all[name].style;
    }
    else if (document.layers)
    {
     	this.obj = document.layers[name];
     	this.style = document.layers[name];
    }
}


$(document).ready(function(){
    
    $(".div_html img").each(function (i) {
       var img_href = $(this).attr("src");
       if (img_href.indexOf('content/images/')!=-1){
       //if (!(img_href=='images/edit.gif' || img_href=='images/order.gif')){
         $(this).wrap('<a href="'+img_href+'" class="thickbox" rel="group"></a>');
       }
     });

})

-->
