        <div class="customer_ride">
          <h3><span><em>Custom Rides</em> <small><img src="images/arrow.png" alt=""></small></span></h3>
          <div class="slider_area"> <a href="#" class="left_btn"><img src="images/left_btn.png" alt=""></a>
            <div class="slider">
<div class="slide2"> 
    <?php 
      $imageCount     = 0; 
      $imagesPerSlide = 4; 
    ?> 
      <?php foreach ($custom_motorbikesRecords as $record): ?>
     
    <ul> 
       <?php foreach ($record['upload'] as $upload): ?>
        <?php if (++$imageCount % ($imagesPerSlide + 1) == 0):?> 
	  </ul> 
	  <ul> 
	<?php endif ?> 
		     
        <li><a href="custom-motorbikes.php"><img src="<?php echo $upload['thumbUrlPath'];?>" alt="" width="<?php echo $upload['thumbWidth4'];?>" height="<?php echo $upload['thumbHeight4'];?>"></a><span><?php echo $record['title'] ?></span></li> 
                   
      <?php endforeach ?> 
    </ul> 
   <?php endforeach ?>

    <?php if (!$custom_motorbikesRecords): ?>
      No records were found!<br/><br/>
    <?php endif ?> 
 
  </div>
            </div>
            <a href="#" class="right_btn"><img src="images/right_btn.png" alt=""></a> </div>
        </div>
