<!-- this is the Formats changer-->
thisImg = 1
imgCt = 3

function newInfocomm2009(direction){
if(document.slides)
{
thisImg = thisImg + direction
if (thisImg < 1)
{
thisImg = imgCt
}
if (thisImg > imgCt){
thisImg = 1
}
document.slides.src=
"pics/portfolio/infocomm_"
+thisImg+".jpg"
}
}
//-->


