// JavaScript Document

var c=0
var s
function photoGallery()
{
if (c%5==0){
document.getElementById('photo-gallery').src = "images/home/artists.jpg";
}
if (c%5==1){
document.getElementById('photo-gallery').src = "images/home/photographers.jpg";
}
if (c%5==2){
document.getElementById('photo-gallery').src = "images/home/printers.jpg";
}
if (c%5==3){
document.getElementById('photo-gallery').src = "images/home/retailers.jpg";
}
if (c%5==4){
document.getElementById('photo-gallery').src = "images/home/scrapbookers.jpg";
}
c=c+1
s=setTimeout("photoGallery()",5000)
}

