BannerArray3 = new Array(3); 
BannerArray3[0] = "http://romanceatheart.com/images/review/ap-ordinaryvamp.jpg"; 
BannerArray3[1] = "http://romanceatheart.com/images/review/ap-pictureperfect.jpg"; 
BannerArray3[2] = "http://romanceatheart.com/images/review/ap-shiftforhire.jpg"; 
current_banner3=0; 
banner3=BannerArray3.length; 
function CycleBanner3() 
{  
if (current_banner3==banner3) 
{  
current_banner3=0; 
}  
document.Banner3.src=BannerArray3[current_banner3]; 
current_banner3 ++; 
setTimeout("CycleBanner3()", 3*6000); 
}

window.onload=CycleBanner3;
