$('.sbi_item').each(function(){
if( ! $(this).find('.sb_new').length ) {
$(this).find('.sbi_photo_wrap, .sbi_info').wrapAll( "<div class='sb_new' />");
}
});
.sb_new {
margin: auto 5px;
border: 1px solid;
border-radius: 3px;
border-color: #dedede;
}
.sb_new:after {
content: '';
display: table;
clear: both;
visibility: hidden;
}
