var myPix=new Array("http://vintagebulova.com/ebay/bulova221-01.jpg",
"http://vintagebulova.com/ebay/bulova221-02.jpg",
"http://vintagebulova.com/ebay/bulova221-04.jpg",
"http://vintagebulova.com/ebay/bulova221-06.jpg",
"http://vintagebulova.com/ebay/bulova221-05.jpg",
"http://vintagebulova.com/ebay/bulova221-03.jpg",
"http://vintagebulova.com/ebay/bulova221-07.jpg",
"http://vintagebulova.com/ebay/bulova221-08.jpg"
)
// location of first pic - starts at 0
var thisPic = 0
function setStart(startingPoint) {
thisPic = startingPoint;
}
function doPrevious() {
if (document.images && thisPic > 0)
{        thisPic--
document.myJPG.src=myPix[thisPic]    }}
function doNext() {
if (document.images && thisPic < 7)
{        thisPic++
document.myJPG.src=myPix[thisPic]    }}
