﻿$(function() {
    $(".service_content").each(function() {
        $(this).hide();
    });
    $(".service_email").each(function() {
        $(this).hide();
    });
    $(".submenu li a").click(function(event) {
        event.preventDefault();
        var rawService = $(this).attr("id");
        var service = rawService.replace("SPandNewbuilding", "S&PandNewbuilding");
        setContent(service);
    });
});
function setContent(dataValue) {
    $(".service_content").each(function() {
        $(this).hide();
    });
    $(".service_email").each(function() {
        $(this).hide();
    });
    $("#mainContactInfo").hide();
    $(".firstIntro").hide();
    var rawName = "#cName_" + dataValue;
    var rawService = "#" + dataValue;
    var name = rawName.replace(/&/g, "");
    var service = rawService.replace(/&/g, "");
    var serviceEmail = service+"_email";
    $(serviceEmail).show();
    $(name).show();
    $(".submenu li a").each(function() {
        $(this).removeClass("nav2Selected").addClass("nav2");
    });
    $(service).removeClass("nav2").addClass("nav2Selected");
    setFlashData(dataValue);
}
