﻿// Load flash objects
var clocation = "intro";
function showlocations(lname)
{
    document.getElementById("locations" + clocation).className = "hidden";
    document.getElementById("locations" + lname).className = "";
    clocation = lname;
}

