﻿// file: exploreMenuSouth.js
// Stanley 
// purpose: show south island menu set
// notes: need to run with exploreMenu.js

menuStaySouth = function() {
    $('#menuNorth').slideUp("fast");
    $('#menuSouth').slideDown("fast");
    $('a#linkSouth').addClass("open");
    $('a#linkSouth').removeClass("closed");
    $('a#linkNorth').addClass("closed");
    $('a#linkNorth').removeClass("open");
}


$(document).ready(function() {
    // showSouth();
    menuStaySouth();
});
