var c=0
var s
function photoSildeshow() {
if (c % 7 == 0) {
	document.getElementById('photo_slideshow').src = "http://www.lbcc.edu/FashionDesign/images/banner1a.jpg";
}
if (c % 7 == 1) {
	document.getElementById('photo_slideshow').src = "http://www.lbcc.edu/FashionDesign/images/banner2a.jpg";
}
if (c % 7 == 2) {
	document.getElementById('photo_slideshow').src = "http://www.lbcc.edu/FashionDesign/images/banner3a.jpg";
}
if (c % 7 == 3) {
	document.getElementById('photo_slideshow').src = "http://www.lbcc.edu/FashionDesign/images/banner4a.jpg";
}
if (c % 7 == 4) {
	document.getElementById('photo_slideshow').src = "http://www.lbcc.edu/FashionDesign/images/banner5a.jpg";
}
if (c % 7 == 5) {
	document.getElementById('photo_slideshow').src = "http://www.lbcc.edu/FashionDesign/images/banner6a.jpg";
}
if (c % 7 == 6) {
	document.getElementById('photo_slideshow').src = "http://www.lbcc.edu/FashionDesign/images/banner7a.jpg";
}
c=c+1
s=setTimeout("photoSildeshow()",5000);
}
window.onload = photoSildeshow; 

