﻿function ShowPicture(apartman, index) {
    document.getElementById("currentPicture").style.backgroundImage = "url('/Photos/Photos/" + apartman + "/" + index.toString() + ".jpg')";
    _slideShowApartman = apartman;
    _slideShowIndex = index;
}

var _slideShowApartman = "Gambrinusz";
var _slideShowIndex = 0;

var __intervalID = null;

function StartSlideShow(apartman) {
    _slideShowApartman = apartman;
    HighlightApartman(apartman);
    
    if (__intervalID != null)
        clearInterval(__intervalID);
    __intervalID = setInterval(ShowNext, 5000);
}

function ShowNext() {
    _slideShowIndex++;
    ShowPicture(_slideShowApartman, _slideShowIndex % 11);
}

function HighlightApartman(apartman) {
    document.getElementById("apt" + apartman).style.textDecoration = "underline";
    document.getElementById("apt" + (apartman == "Kolcsey" ? "Gambrinusz" : "Kolcsey")).style.textDecoration = "none";
}

function ShowCurrent() {
    window.open("http://www.szoboszloszallas.hu/Photos/Photos/" + _slideShowApartman + "/" + _slideShowIndex + "_full.jpg");//, "SzoboszloSzallas.hu - " + _slideShowApartman + " apartman");
}
