﻿var caption = new Array();
var imageID = 1;

caption[0] = "Welcome to Asa Flats + Lofts. Redefining home. (NW 13th & NW Lovejoy view)";
caption[1] = "Main entrance @ NW 12th & NW Marshall.";
caption[2] = "Drinks and conversation are a regular occurrence in Asa's main lobby.";
caption[3] = "Asa's modern designed kitchen offers maple hardwood floors, stainless steel appliances, and mobile islands.";
caption[4] = "Want a great recipe? Start with a fresh kitchen and add people.";
caption[5] = "Loft living with an emphasis on the living part.";
caption[6] = "The loft offers a two-story space...";
caption[7] = "...with an upstairs master bedroom.";
caption[8] = "Asa's water-saving lavatories and showerheads are found in each apartment home.";
caption[9] = "Free WiFi is standard in the common areas.";
caption[10] = "Asa's 4th floor terrace space features personal planting gardens...";
caption[11] = "...and storm water barrels for watering.";
caption[12] = "Enter your loft through the 4th floor garden terrace...";
caption[13] = "...and you are home.";
caption[14] = "Pets are not only welcome at Asa. They’re also quite erudite.";
caption[15] = "Green roofs surround the terrace, reducing storm water runoff.";
caption[16] = "Asa's sleek design is notable.";
caption[17] = "Asa's Sky Terrace welcomes you to relax outside....";
caption[18] = "...and offers penthouse level views.";
caption[19] = "Toast drinks or s'mores by the fire and soak in the Portland skyline.";
caption[20] = "Move to Asa and your neighbors will all look up to you.";
caption[21] = "Lofts have modern, minimalist architecture.";
caption[22] = "Asa's Sky Lounge and Terrace have 180 degree views.";
caption[23] = "Guests envy the Sky Lounge.";
caption[24] = "Design details abound in the Sky Lounge.";
caption[25] = "Relax with some coffee and a paper on weekends while gazing at the West Hills.";
caption[26] = "If birds of a feather flock together, welcome to your new nest.";
caption[27] = "Can't you just see your next dinner soiree in the Sky Lounge?";
caption[28] = "Living at Asa can completely change your outlook.";
caption[29] = "Some of your best memories could happen here.";
caption[30] = "How many minutes will it take for Asa to feel like home? (one-bedroom living space)";
caption[31] = "Asa base.";
caption[32] = "Wake up in the Pearl.";
caption[33] = "You might want to consider telecommuting.";
caption[34] = "Be part of your own still life. (main elevators)";
caption[35] = "Warning: Living at Asa could lead to better health.";
caption[36] = "Take a seat, make yourself at Asa.";
caption[37] = "Stairway to heaven or Asa?";
caption[38] = "The next chapter of your life could be written here.";
caption[39] = "Asa sweet Asa. Stop by our leasing office at NW 12th & NW Marshall and find out for yourself why there’s no place like Asa.";
caption[40] = "Solid gold.  Going LEED Gold, that is.";
caption[41] = "Asa. Where life imitates art and art inspires life.";
caption[42] = "Legally, we can't promise that you'll feel the Portland vibe at Asa.";

function img_swap(i) {
    document.getElementById('photo').src = "images/tour/" + i + ".jpg";
    document.getElementById('imglnk' + imageID).className = "linkbarLink";
    document.getElementById('imglnk' + i).className = "linkbarCurrent";
    document.getElementById('imgCaption').innerHTML = caption[i - 1];
    imageID = i;
}

function img_prev() {
    if (imageID != 1) {
        var imgPrevID = (imageID - 1)
        document.getElementById('photo').src = "images/tour/" + imgPrevID + ".jpg";
        document.getElementById('imglnk' + imageID).className = "linkbarLink";
        document.getElementById('imglnk' + imgPrevID).className = "linkbarCurrent";
        document.getElementById('imgCaption').innerHTML = caption[imgPrevID - 1];
        imageID = imgPrevID;
    }
}

function img_next() {
    if (imageID != 43) {
        var imgNextID = (imageID + 1)
        document.getElementById("photo").src = "images/tour/" + imgNextID + ".jpg";
        document.getElementById("imglnk" + imageID).className = "linkbarLink";
        document.getElementById("imglnk" + imgNextID).className = "linkbarCurrent";
        document.getElementById("imgCaption").innerHTML = caption[imgNextID - 1];
        imageID = imgNextID;
    }
}

