$(function(){

$('img.hs, img.hs1, img.hs2, img.hs3, img.hs4, img.hs5, img.hs6, img.hs7, img.hs8, img.hs9, img.hs10').each(function() {  
    var img_src = $(this).attr("src");
    var cla = $(this).attr("class");   
    $(this).removeAttr('class'); 
    $(this).wrap('<a href="'+img_src+'" class="'+cla+'" onclick="return hs.expand(this);"> <img title="'+this.title+'" alt="'+this.alt+'" width="'+this.width+'" height="'+this.height+'" src="'+img_src+'" style="'+$(this).attr('style')+'"/></a>');
    $(this).parents('a').click();
    $(this).remove();  
});

});
