// JavaScript Document
var indexSlideShow = {};

indexSlideShow.items = [
    {scrshot:"/static/images/SDK_ads_1.jpg"},
    {scrshot:"/static/images/SDK_ads_2.jpg"},
    {scrshot:"/static/images/SDK_ads_3.jpg"},
    {scrshot:"/static/images/SDK_ads_4.jpg"}
  ];

indexSlideShow.currentItem = -1;
/**
 *
 */
indexSlideShow.start = function() {
  //
  var d = document.getElementById("slides");
  if (d) {
    //
    var t = [];
    t[t.length] = '<div class="noscript_slides">';
    t[t.length] = '<img id="scrshot" onclick="window.location.href=\'products.jsp\'" onload="setTimeout(function(){indexSlideShow.showNextSlide();},8000);" src="';
    t[t.length] = '" alt="" title="" usemap="#bannermap" />';
    t[t.length] = '<map name="bannermap">';
    t[t.length] = '<area shape="rect" coords="670,95,880,147" href="products.jsp" target="_top"  alt="Learn more" />';
    t[t.length] = '<area shape="rect" coords="670,173,880,225" href="http://developer.10duke.com/" target="_top" alt="Download" />';
    t[t.length] = '</map>';
    t[t.length] = '</div>';
    d.innerHTML = t.join("");
    indexSlideShow.showNextSlide();
  }
};
/**
 *
 */
indexSlideShow.showNextSlide = function() {
  //
  indexSlideShow.currentItem++;
  if (indexSlideShow.currentItem >= indexSlideShow.items.length) {
    //
    indexSlideShow.currentItem = 0;
  }
  var scrshot = document.getElementById("scrshot");
  if (scrshot) {
    //
    scrshot.setAttribute("src", indexSlideShow.items[indexSlideShow.currentItem].scrshot);
  }
  /*var logo = document.getElementById("logo");
  if (logo) {
    //
    logo.setAttribute("src",indexSlideShow.items[indexSlideShow.currentItem].logo);
    if (logo.style) {
      //
      logo.style.paddingTop = (indexSlideShow.items[indexSlideShow.currentItem].logo_offset_y + "px");
    }
  }*/
};
