var counter = location.search.substr(1).split("?")
var imagesource = new Array()
var labelsource = new Array()

imagesource[0] = "../images/cityscapes/cap_hill_townhouse.jpg"
imagesource[1] = "../images/cityscapes/cap-town-sc.jpg"
imagesource[2] = "../images/cityscapes/dupont.jpg"
imagesource[3] = "../images/cityscapes/park-cafe.jpg"
imagesource[4] = "../images/cityscapes/tangherlini-house.jpg"
imagesource[5] = "../images/cityscapes/pozitano.jpg"
imagesource[6] = "../images/cityscapes/kentucky-rowhome.jpg"
imagesource[7] = "../images/cityscapes/amalfi.jpg"
imagesource[8] = "../images/cityscapes/ca_d'oro.jpg"
imagesource[9] = "../images/cityscapes/venetian_canal.jpg"
imagesource[10] = "../images/cityscapes/san-marco.jpg"
imagesource[11] = "../images/cityscapes/palazzo.jpg"
imagesource[12] = "../images/cityscapes/florance-syn.jpg"
imagesource[13] = "../images/cityscapes/synagogue.jpg"
imagesource[14] = "../images/cityscapes/meknes.jpg"
imagesource[15] = "../images/cityscapes/chefcauen.jpg"
imagesource[16] = "../images/cityscapes/tangier_synagogue.jpg"
imagesource[17] = "../images/cityscapes/moroccan-passageway.jpg"
imagesource[18] = "../images/cityscapes/moroccan-door.jpg"
imagesource[19] = "../images/cityscapes/fez.jpg"
imagesource[20] = "../images/cityscapes/parisian-townhouse.jpg"
imagesource[21] = "../images/cityscapes/left-bank.jpg"
imagesource[22] = "../images/cityscapes/st._paul_de_vence.jpg"
imagesource[23] = "../images/cityscapes/villa-france.jpg"
imagesource[24] = "../images/cityscapes/aix_en_provence.jpg"
imagesource[25] = "../images/cityscapes/NO-sm.jpg"
imagesource[26] = "../images/cityscapes/shotgun-zap.jpg"

labelsource[0] = "../images/cityscapes/cap_hill_townhouse-label2.gif"
labelsource[1] = "../images/cityscapes/cap-town-sc-label2.gif"
labelsource[2] = "../images/cityscapes/dupont-label2.gif"
labelsource[3] = "../images/cityscapes/park-cafe-label2.gif"
labelsource[4] = "../images/cityscapes/tangherlini-house-label2.gif"
labelsource[5] = "../images/cityscapes/pozitano-label2.gif"
labelsource[6] = "../images/cityscapes/kentucky-rowhome-label2.gif"
labelsource[7] = "../images/cityscapes/amalfi-label2.gif"
labelsource[8] = "../images/cityscapes/ca_d'oro-label2.gif"
labelsource[9] = "../images/cityscapes/venetian_canal-label2.gif"
labelsource[10] = "../images/cityscapes/san-marco-label2.gif"
labelsource[11] = "../images/cityscapes/palazzo-label2.gif"
labelsource[12] = "../images/cityscapes/florance-syn-label2.gif"
labelsource[13] = "../images/cityscapes/synagogue-label2.gif"
labelsource[14] = "../images/cityscapes/meknes-label2.gif"
labelsource[15] = "../images/cityscapes/chefcauen-label2.gif"
labelsource[16] = "../images/cityscapes/tangier_synagogue-label2.gif"
labelsource[17] = "../images/cityscapes/moroccan-passageway-label2.gif"
labelsource[18] = "../images/cityscapes/moroccan-door-label2.gif"
labelsource[19] = "../images/cityscapes/fez-label2.gif"
labelsource[20] = "../images/cityscapes/parisian-townhouse-label2.gif"
labelsource[21] = "../images/cityscapes/left-bank-label2.gif"
labelsource[22] = "../images/cityscapes/st._paul_de_vence-label2.gif"
labelsource[23] = "../images/cityscapes/villa-france-label2.gif"
labelsource[24] = "../images/cityscapes/aix_en_provence-label2.gif"
labelsource[25] = "../images/cityscapes/NO-sm-label2.gif"
labelsource[26] = "../images/cityscapes/shotgun-zap-label2.gif"

function next() {
counter = ++counter;
if (counter > 26)
    counter = 0;
document.image.src=imagesource[counter];
document.label.src=labelsource[counter];
}

function previous() {
counter = --counter;
if (counter < 0)
    counter = 26;
document.image.src=imagesource[counter];
document.label.src=labelsource[counter];
}

function back() {
if (navigator.appName.indexOf('Microsoft') != -1)
history.back()
else 
history.go("cityscapes.htm")
}

function display() {
document.image.src=imagesource[counter];
document.label.src=labelsource[counter];
}
