﻿var imgs1 = new Array("http://images.medicinenet.com/images/ltnav-promo-adult-skin-problems.jpg",
					  "http://images.medicinenet.com/images/ltnav-promo-skin-conditions.jpg",
					  "http://images.medicinenet.com/images/ltnav-promo-ringworm.jpg",
					  "http://images.medicinenet.com/images/ltnav-promo-adhd-kids.jpg",
					  "http://images.medicinenet.com/images/ltnav-promo-chronic-fatigue.jpg");
					  
var lnks1 = new Array("http://www.medicinenet.com/skin-problems-pictures-slideshow/article.htm",
					  "http://www.medicinenet.com/script/main/art.asp?articlekey=107516",
					  "http://www.medicinenet.com/ringworm-pictures-slideshow/article.htm",
					  "http://www.medicinenet.com/adhd_children_pictures_slideshow/article.htm",
					  "http://www.medicinenet.com/chronic_fatigue_syndrome_pictures_slideshow/article.htm");
					  
var alt1 = new Array("Adult Skin Problems Slideshow",
					 "Skin Conditions Gallery",
					 "Ringworm Slideshow",
					 "ADHD in Children",
					 "Chronic Fatigue Syndrome");
var currentAd1 = 0;
var imgCt1 = 5;
var banner1 = document.getElementById('adBanner1');
var link1 = document.getElementById('ssBanner1'); 
function cycle1() {
if (currentAd1 == imgCt1) {
  currentAd1 = 0;
}
banner1 = document.getElementById('adBanner1');
link1 = document.getElementById('ssBanner1');     
banner1.src=imgs1[currentAd1]
banner1.alt=alt1[currentAd1]
document.getElementById('ssBanner1').href=lnks1[currentAd1]
currentAd1++;
}
function startCycle1() {
banner1 = document.getElementById('adBanner1');
if (banner1 != null) 
    window.setInterval("cycle1()",3500);
else
    window.setTimeout("startCycle1()", 2000);    
}
if (banner1 != null) 
startCycle1();
else
window.setTimeout("startCycle1()", 2000);   


