var imageWidth = 146;
$(window).load(function(){
   centerImages();
});
function centerImages(){
    $(".center").each(function(){
        $(this).css("margin-left", ((imageWidth-$(this).width())/2));
        $(this).show();
    });
}
