<?php header('Content-type: text/html; charset=utf-8'); ?>
<?php
  /* STEP 1: LOAD RECORDS - Copy this PHP code block near the TOP of your page */
  require_once "/home/content/a/b/c/thiswebsite/html/abcdef/lib/viewer_functions.php";

  list($rotate_thisRecords, $rotate_thisMetaData) = getRecords(array(
    'tableName'   => 'rotate_this',
  ));

?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<title>Simple Logo Rotator</title>

<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.3.2/jquery.min.js"></script>
<script type="text/javascript" src="js/1-jcarousellite_1.0.1.js"></script>
<script type="text/javascript" src="js/1-jcarousellite_button.js"></script>
<link rel="stylesheet" type="text/css" href="css/simplelogorotator.css">
</head>

<body>
<div id="rotate_this">
      <div id="slide-container">
          <div id="slides-boxed">
            <ul>
         <?php foreach ($rotate_thisRecords as $record): ?>
         <?php foreach ($record['logo'] as $upload): ?>
              <!-- logos -->
              <li>
		 <?php if ($upload['hasThumbnail']): ?>
         <div class="slide-images" style="background:url(<?php echo $upload['thumbUrlPath'] ?>) no-repeat 0 0;" onmouseover="this.style.cursor='pointer';" onclick="document.location.href='<?php echo $record['_link'] ?>'"></div>
         <?php endif ?>
              </li>
              <!-- /logo -->
        <?php endforeach ?>
        <?php endforeach ?>
            </ul>
          <!-- /slides-boxed --></div>
      <!-- /slide-container --></div>
<!-- /rotate_this --></div>
</body>
</html>
