
var bannerImg = new Array();
  // Enter the names of the images below
 bannerImg[0]="/images/stories/homepage/2.gif";
 bannerImg[1]="/images/stories/homepage/1.gif"; 
 bannerImg[2]="/images/stories/homepage/3.gif";
 bannerImg[3]="/images/stories/homepage/4.gif";
var newBanner = 0;
var totalBan = bannerImg.length;
  // set the time below for length of image display
  // i.e., "4*1000" is 4 seconds
var rotateDelay = 10000;
var timeID = 0;

function cycleBan() {
  clearTimeout(timeID);
  newBanner++;
  if (newBanner == totalBan) {
    newBanner = 0;
  }
  document.getElementById("rotatingBg").background = bannerImg[newBanner];
  timeID = setTimeout("cycleBan()", rotateDelay);
  window.onload=cycleBan;
}

function showprev() {
  newBanner = newBanner-1;
  if (newBanner < 0) {
    newBanner = (totalBan-1);
  }
  document.getElementById("rotatingBg").background = bannerImg[newBanner];
}  

function shownext() {
  newBanner = newBanner+1;
  if (newBanner >= totalBan) {
    newBanner = 0;
  }
  document.getElementById("rotatingBg").background = bannerImg[newBanner];
}  

function displaylink() {
	switch (newBanner)   {
    	case 0: { window.location = "/index.php?option=com_content&task=view&id=182";
		break }
		
		case 1: { window.location = "/index.php?option=com_content&task=view&id=180"; 
		break }
		
    	case 2: { window.location = "/index.php?option=com_content&task=view&id=181"; 
		break }

    	case 3: { window.location = "/index.php?option=com_content&task=view&id=183"; 
		break }		
		
    	default: { window.location = "/listsection/HotTopics/";
		break }
  }

}

//setTimeout("cycleBan()", rotateDelay); 
window.onload=cycleBan;

