jQuery.noConflict();
jQuery(document).ready(function(){

 jQuery(".rounded-img, .rounded-img2, .full, .myGallery, .slideElement").load(function() {
    jQuery(this).wrap(function(){
      return '<span class="' + $(this).attr('class') + '" style="background:url(' + jQuery(this).attr('src') + ') no-repeat center center; width: ' + jQuery(this).width() + 'px; height: ' + jQuery(this).height() + 'px;" />';
    });
    jQuery(this).css("opacity","0");
  });

});


