function showImage(url) {
  $('#sel_img')
    .attr('src', url)
    .load(function() {
            var corr_ht = ($(this).parent().height() - $(this).height()) / 2;
            $(this).css('margin-top', corr_ht);
            $(this).fadeIn('slow');
          });
}

function transImage(url) {
  $('#sel_img')
    .fadeOut('slow', function() {
               $(this).hide();
               showImage(url);   
             });
}
