// JavaScript Document

var c=0
var s
function photoGallery()
{
if (c%5==0){
document.getElementById('photo-gallery').src = "gallary/afc-online-statement.gif";
}
if (c%5==1){
document.getElementById('photo-gallery').src = "gallary/calculator-specials.gif";
}
if (c%5==2){
document.getElementById('photo-gallery').src = "gallary/road-to-success.gif";
}
if (c%5==3){
document.getElementById('photo-gallery').src = "gallary/skys-the-limit.gif";
}
if (c%5==4){
document.getElementById('photo-gallery').src = "gallary/news-and-views.gif";
}
c=c+1
s=setTimeout("photoGallery()",5000)
}

