﻿function toggle(name) {

  var name = name.toLowerCase();
  document.getElementById("bioDivImg").style.visibility = "visible";

  switch (name) {

    case "manny":
      load_Profile("../images/bioManny.png", "Manny Rivera", "Chief Executive Officer");
      break;
    case "enrique":
      load_Profile("../images/bioEnrique.png", "Enrique Smith", "Chief Operations Officer");
      break;
    case "xio":
      load_Profile("../images/bioXio.png", "Xio Smith", "Senior VP, Human Resources");
      break;
    case "andy":
      load_Profile("../images/bioAndy.png", "Andrew Bruce, CISSP", "Chief Technical Officer");
      break;
    case "craig":
      load_Profile("../images/bioCraig.png", "Craig Super", "VP, DoD Sector");
      break;
    case "lasky":
      load_Profile("../images/bioMike.png", "Michael Lasky Ph.D.", "VP, Research & Development");
      break;
    case "joseph":
      load_Profile("../images/bioJoseph.png", "Joseph Hunt", "VP, Procurement");
      break;
  }
  load_ProfileText(name);
}


function load_Profile(imgLoc, bioName, title) {

  document.getElementById("bioDivImg").src = imgLoc;
  document.getElementById("bioName").innerHTML = bioName;
  document.getElementById("bioTitle").innerHTML = title;
}

function load_ProfileText(name) {

  switch (name) {

    case "manny":
      var text = "Manny Rivera served this great country as an Enlisted and Army officer for over 25 years, culminating his Military Career as the Army&#39;s Headquarters DA Chief Information Office (CIO) Architect for Service Oriented Architecture (SOA). Manny is the founder, owner and Chief Executive Officer (CEO) for RiVidium Inc., a Service Disabled, Veteran Owned, Small Business.";
      text += "<br/><br/>";
      text += "As the CEO, Manny is responsible for giving direction and leadership toward achieving RiVidium's philosophy, mission, strategy, and its annual goals and objectives.";
      text += "<br/><br/>";
      text += "Manny holds a Master of Science in Computer Science from George Washington University (GWU) and is also a PhD candidate at GWU.";

      break;

    case "enrique":
      var text = "As the Chief Operating Officer, Mr. Smith leads managers to evaluate and take actions that are consistent with RiVidium's overall corporate strategy. Mr. Smith advises the CEO on strategic business development and key corporate planning issues that relate and impact the operations of the company. He determines resource allocation for RiVidium’s sectors and ensures the CEO is informed about business activities, performance, opportunities, and recommended courses of action. Mr. Smith has extensive experience in strategic business development and key corporate planning issues that relate and impact the operations of the company.";
      text += "<br/><br/>";
      text += "Mr. Smith holds a Bachelor&#39;s Degree in Philosophy and Economics from Columbia University.";
      break;

    case "xio":
      var text = "As Senior Vice President for RiVidium’s Human Resources Department, Ms. Smith operates at the executive staff level, providing strategic support to management of multiple business groups. Ms. Smith works with these managers in delivering innovative and strategic solutions to business challenges, while also guiding the development of foundational processes required to meet RiVidium’s corporate needs. As well, she drives the development and implementation of various human resource programs and systems which all play a critical role in RiVidium’s ability to attract and retain a world class organization. Ms. Smith implements strategies for change that enable managers to plan, evaluate, develop and improve their human resources so as to optimize their contribution to RiVidium's strategic and operational performance.";
      text += "<br/><br/>";
      text += "Ms. Smith holds a Bachelor of Science in Management from Excelsior University and Master’s Degrees in Human Resource Management and Management of Leadership from Webster University.";
      break;

    case "andy":
      var text = "As RiVidium’s Chief Technology Officer (CTO), Mr. Bruce coordinates with RiVidium’s long-term research efforts and helps ensure consistency for RiVidium’s emerging computing, networking and communications products, technologies, and services. He leads the development and design of next-generation technologies for all RiVidium IT platforms and engines, supporting government and industry market segments. Mr. Bruce is a prolific software developer in numerous languages and has developed commercial products, working pilots and proofs-of-concept with numerous industry organizations.";
      text += " Mr. Bruce is currently pursuing a Master's Degree in Information Assurance from Norwich University. Intensely active in the online community, he contributes regularly to opensource projects and blogs. Presently, Mr. Bruce is working hard on projects including network security, Amazon Web Services integration, and Biometrics especially in relation to DoD Ontology efforts.";
      break;

    case "craig":
      var text = "Mr. Super is the Vice President for RiVidium’s Defense Sector, providing performance-based support for Department of Defense Warfighter systems and IT operations. In this capacity, he provides strategic leadership for the development of RiVidium’s core delivery engines in order to ensure that a full continuum of services is created and structured in response to customer needs. Mr. Super has extensive experience in both the IT arena and the Intelligence Community.";
      text += "<br/><br/>";
      text += "Mr. Super holds a Bachelor of Arts in Political Science from the University of Kansas and a Master of Science in Business Administration from Boston University.";
      break;

    case "lasky":
      var text = "As VP of Research and Development, Dr. Lasky oversees RiVidium’s research efforts. Dr. Lasky brings 20 years of experience in commercial software design and development to RiVidium’s portfolio of outstanding products. His track record of 100% successful completion and deployment, along with his expertise at understanding and solving for each unique challenge, are assets to RiVidium’s customers and their bottom lines.";
      text += "<br/><br/>";
      text += "Dr. Lasky holds a B.A. from Oberlin College and a Ph.D. in Economics from the University of Maryland.";
      break;

    case "joseph":
      var text = "As the Vice President of Procurement, Mr. Hunt is responsible for setting the vision, strategic direction, expectations, and annual objectives for procurement within the organization, including all business units. Through collaboration with the business units, he establishes overall governance, policies, procedures, systems, quality standards, and best practices to enable the company to optimize the management of vendor spending, vendor relationships and supplier diversity programs. Mr. Hunt establishes and executes integrated procurement initiatives throughout the company. He develops, implements, and leverages a repeatable, disciplined approach to implement best practice agreements organization-wide focused on total cost effectiveness, enhanced service levels, improved coordination, and risk compliance. Mr. Hunt also manages all contractual relationships within the company."
      text += "<br/><br/>";
      text += "Mr. Hunt received a dual bachelor’s degree from North Carolina State University in Business Management and Psychology."
  }
  document.getElementById("bioText").innerHTML = text;
}

