﻿$(function() {
    $(".office_content").each(function() {
        $(this).hide();
    });
    $(".submenu li a").click(function(event) {
        event.preventDefault();
        var dataValue = $(this).attr("id");
        setContent(dataValue);
    });
});
function setContent(dataValue) {
    $(".office_content").each(function() {
        $(this).hide();
    });
    $(".firstIntro").hide();
    $("#mainContactInfo").hide();
    var name = "#cName_" + dataValue;
    var contact = "#office_" + dataValue;
    var office = "#" + dataValue;

    $(name).show();
    $(contact).show();
    $(".submenu li a").each(function() {
        $(this).removeClass("nav2Selected").addClass("nav2");
    });
    $(office).removeClass("nav2").addClass("nav2Selected");
    setFlashData(dataValue);
}
