function initVideo() {
  $("li#video-player").click(function(){
    activeImage = 0;
    renderScreen();
    $("div.pbc-c-content").hide();
    $("#video-container").show();
    return false;
  });
  $("li#tour").click(function(){
    activeImage = 0;
    renderScreen();
    $("div.pbc-c-content").hide();
    $("#tour-container").show();
    return false;
  })
}

function initPage() {
  switch (activeType) {
    case "image": $("li#pp-1").click(); break;
    case "video": $("li#video-player").click(); break;
    case "tour": $("li#tour").click(); break;
  }
}

$(document).ready(initVideo);
$(document).ready(initPage);

