

var count = 0;            // Place in imageFiles array
var Flag = 'Y';           // Clause to stop Recursive function
var delayTime = 3;        // seconds to delay between rotating icons, http://images.zap2it.com/html/site_nav/
var imageFiles = new Array("http://images.zap2it.com/html/site_nav/icon-digg.gif", 
                           "http://images.zap2it.com/html/site_nav/icon-delicious.gif", 
                           "http://images.zap2it.com/html/site_nav/icon-facebook.gif", 
                           "http://images.zap2it.com/html/site_nav/icon-google.gif",
                           "http://images.zap2it.com/html/site_nav/icon-myspace.gif",
                           "http://images.zap2it.com/html/site_nav/icon-newsvine.gif",
                           "http://images.zap2it.com/html/site_nav/icon-reddit.gif", 
                           "http://images.zap2it.com/html/site_nav/icon-yahoo.gif");



function showSocialBookmarks() { //Shows or hides social bookmarks
  var socialBookmarks = document.getElementById("social-bookmarks");
  var shareLI = document.getElementById("share-bookmarks");

  if (socialBookmarks.style.display == "block") {
        shareLI.style.backgroundImage = "url('http://images.zap2it.com/html/site_nav/bg-icon-expand.gif')";
        shareLI.style.backgroundRepeat = "no-repeat";
        shareLI.style.backgroundPosition = "0px 0px";
        socialBookmarks.style.display = "none";
  } else {
        shareLI.style.background = "url('http://images.zap2it.com/html/site_nav/bg-icon-collapse.gif')";
        shareLI.style.backgroundRepeat = "no-repeat";
        shareLI.style.backgroundPosition = "0px 0px";
        socialBookmarks.style.display = "block";
        
  }
}

function stopChangeSocialBookmarkingBG(){ //Stops rotation of "share" background images and changes the background to the expand icon.
  var socialBookmarks = document.getElementById("social-bookmarks");
  var shareLI = document.getElementById("share-bookmarks");

  if (socialBookmarks.style.display != "block") { //If social bookmarks are not visible
      shareLI.style.backgroundImage = "url('http://images.zap2it.com/html/site_nav/bg-icon-expand.gif')";
      shareLI.style.backgroundPosition = "0px 0px";
      shareLI.style.backgroundRepeat = "no-repeat";
    
  }
}

function startChangeSocialBookmarkingBG(){  //Starts rotation of "share" background images.
  var socialBookmarks = document.getElementById("social-bookmarks");
  var shareLI = document.getElementById("share-bookmarks");
  

  
  if (socialBookmarks.style.display != "block") { //If social bookmarks are not visible
      

      socialBookmarks.style.display = "none";
      shareLI.style.backgroundImage = "url('http://images.zap2it.com/html/site_nav/icon-rotate-16x16.gif')";
      shareLI.style.backgroundPosition = "0px 0px";
      shareLI.style.backgroundRepeat = "no-repeat";

      
  }
  

}

