jQuery.noConflict()

var gallery_class = 'jaosg_galerie';

jQuery(document).ready(function(){
  
  jQuery('.'+gallery_class+' img').each(function(){                                                                            
    jQuery(this).css({'margin-top':'-'+(jQuery(this).attr('height')/2)+'px','margin-left':'-'+(jQuery(this).attr('width')/2)+'px'});
    
  });
});
