var myPix=new Array("http://vintagebulova.com/ebay/bulova351-07.jpg",
"http://vintagebulova.com/ebay/bulova351-04.jpg",
"http://vintagebulova.com/ebay/bulova351-03.jpg",
"http://vintagebulova.com/ebay/bulova351-01.jpg",
"http://vintagebulova.com/ebay/bulova351-02.jpg",
"http://vintagebulova.com/ebay/bulova351-08.jpg",
"http://vintagebulova.com/ebay/bulova351-06.jpg",
"http://vintagebulova.com/ebay/bulova351-05.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]    }}
