function onFullLoadImage( loader_id, image_id ){

 $( '#' + loader_id  ).hide();
 $( '#' + image_id  ).show();
 
}

function swapImages( total, index ){

  $( '.target' ).hide();
  
  $( '#img' + index ).show();

}
