Images between thumbnails

Ok, so the headline is probably not the best explaination. I got this PHP code for my “featured”. I want to divide those thumbnails with a picture in between them. In total it’s 19 thumbnails.

If you see here ( http://atleticonorge.com/ ), you see the image is at the bottom of the thumbnails now. This because it’s added via widget. I might need to add it in the PHP to make it work, but i’m not skilled enought to see where or what code to use. I’ve tried several things, without luck. Hopefully you guys could help me out.

	<div id="featured-posts" class="widget">
	
		<ul class="posts">

			<?php  $loop = new WP_Query(
				array(
					'post__not_in' => get_option( 'sticky_posts' ),
					'posts_per_page' => 19,
					'meta_key' => 'wpzoom_is_featured',
					'meta_value' => 1				
					) );

			$m = 0;
			
			if (option::get('featured_category_display') == 'on') { $display_category = TRUE; }
			
			while ( $loop->have_posts() ) : $loop->the_post(); $m++;
			unset($cropLocation, $customTitle, $image, $hasImage);
			$cropLocation = get_post_meta($post->ID, 'wpzoom_thumb_crop', true); // get crop location from post meta
			$customTitle = get_post_meta($post->ID, 'wpzoom_featured_title', true); // get crop location from post meta
			?>

			<?php if ($m == 1) { ?>
			<li class="main">
				<article>

					<?php
					$image = ui::getImage('630', '350',$cropLocation);
					if ($image) { ?>
					<div class="cover">
						<a href="<?php the_permalink(); ?>" title="<?php the_title_attribute(); ?>"><img src="<?php echo $image; ?>" alt="<?php the_title_attribute(); ?>" /></a>
					</div>
					<?php } ?>
					<div class="postmeta">
						<?php if ($display_category) { ?><p class="postmetadata"><span class="category"><?php the_category(', '); ?></span></p><?php } ?>
						<h1 class="large"><a href="<?php the_permalink(); ?>" title="<?php printf( esc_attr__( 'Permalink to %s', 'wpzoom' ), the_title_attribute( 'echo=0' ) ); ?>" rel="bookmark"><?php if ($customTitle) { echo $customTitle; } else { the_title_attribute(); } ?></a></h1>
					</div>
				</article>
			</li>
			<?php } elseif ($m > 1) { ?>
			
			<li class="secondary<?php if ($m == 4) { echo ' secondary-last';} ?>">
				<article>

					<?php
					$image = ui::getImage('200', '200',$cropLocation);
					if ($image) { $hasImage = TRUE; ?>
					<div class="cover">
						<a href="<?php the_permalink(); ?>" title="<?php the_title_attribute(); ?>"><img src="<?php echo $image; ?>" alt="<?php the_title_attribute(); ?>" /></a>
					</div>
					<?php } ?>
					<div class="postmeta<?php if (!$hasImage) {echo ' postmeta-noimage';} ?>">
						<?php if ($display_category) { ?><p class="postmetadata"><span class="category"><?php the_category(', '); ?></span></p><?php } ?>
						<h1 class="small"><a href="<?php the_permalink(); ?>" title="<?php printf( esc_attr__( 'Permalink to %s', 'wpzoom' ), the_title_attribute( 'echo=0' ) ); ?>" rel="bookmark"><?php if ($customTitle) { echo $customTitle; } else { the_title_attribute(); } ?></a></h1>
					</div>
				</article>
			</li>
			<?php } ?>
			
			<?php endwhile; ?>
			
		</ul>
		
		<div class="cleaner">&nbsp;</div>
	
	</div><!-- end #featured-posts -->
	
	<div class="cleaner">&nbsp;</div>

<?php if ($m == 0) { echo '<div class="widget post-content"><p><strong>You are now ready to set-up your Featured Posts content.</strong></p>
<p>For more information about adding posts to this section, please <strong><a href="http://www.wpzoom.com/documentation/morning/">read the documentation</a></strong>.</p></div>'; } ?>