var myPix=new Array("http://vintagebulova.com/ebay/bulova391-03.jpg",
"http://vintagebulova.com/ebay/bulova391-02.jpg",
"http://vintagebulova.com/ebay/bulova391-05.jpg",
"http://vintagebulova.com/ebay/bulova391-15.jpg",
"http://vintagebulova.com/ebay/bulova391-04.jpg",
"http://vintagebulova.com/ebay/bulova391-06.jpg",
"http://vintagebulova.com/ebay/bulova391-11.jpg",
"http://vintagebulova.com/ebay/bulova391-10.jpg",
"http://vintagebulova.com/ebay/bulova391-13.jpg",
"http://vintagebulova.com/ebay/bulova391-12.jpg",
"http://vintagebulova.com/ebay/bulova391-14.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 < 10)
{        thisPic++
document.myJPG.src=myPix[thisPic]    }}

