OneSource 4 w/NEN non-resp

by mrjordy

HTML

<div id="preload">
   <img src="https://navy.deps.mil/peoeis/sites/nen/res/Banner_TL-Hov.png" width="1" height="1"/>
   <img src="https://navy.deps.mil/peoeis/sites/nen/res/Banner_TR-Hov.png" width="1" height="1"/>
   <img src="https://navy.deps.mil/peoeis/sites/nen/res/Banner_C-Hov.png" width="1" height="1"/>
   <img src="https://navy.deps.mil/peoeis/sites/nen/res/Banner_BR-Hov.png" width="1" height="1"/>
   <img src="https://navy.deps.mil/peoeis/sites/nen/res/Banner_BL-Hov.png" width="1" height="1"/>
   <img src="https://navy.deps.mil/peoeis/sites/nen/res/Banner_Text-Overlay-Flat.png" width="1" height="1"/>
</div>
<div id ="HeaderContainer">
     <div class="HeaderTitle">NEN OneSource</div>
     <div class="HeaderSub"></div>
     <div class="GUI"></div>
     <div class="Background-Image"></div>
     <div class="diag-noselect"></div>
     <div class="center-noselect"></div>
     <div class="C toggle"></div>
     <div class="C-popup hidden">
		<a href="https://navy.deps.mil/peoeis/sites/nen/ITSSMD/NPSI/home.aspx">
		 <div class="PopupTitle">NEN Home</div>
		</a>
    </div>
     <div class="TL toggle"></div>
     <div class="TL-popup hidden">
		<a href="https://navy.deps.mil/peoeis/sites/nen/ITSSMD/BRM/home.aspx">
		 <div class="PopupTitle">CDRLs</div>
		</a>
         <div class="PopupText">The CDRL Management tool provides a central repository to manage, track, and access CDRLs.
         </div>
         <a href="https://navy.deps.mil/peoeis/sites/nen/ITSSMD/BRM/home.aspx">
             <div class="NavToPage">Navigate To Page &nbsp;&#187;</div>
         </a>
    </div>
     <div class="TR toggle"></div>
     <div class="TR-popup hidden">
		<a href="https://navy.deps.mil/peoeis/sites/nen/ITSSMD/SDM/home.aspx">
         <div class="PopupTitle">Events</div>
		</a>
         <div class="PopupText">NEN hosts two events semi-annually to facilitate open communications among NEN, Our service providers, and the fleet.
            <div class="sp-button">
                <a...

CSS

#preload {
    display: none; 
}
#HeaderContainer {
    width: 100%;
    height: 260px;
    overflow: hidden;
    border-radius: 4px;
    margin-left: auto;
    margin-right: auto;
    padding-bottom: 30px;
}
#HeaderContainer > .HeaderTitle {
    font-family: helvetica;
    position: absolute;
    z-index: 4;
    margin-top: 8px;
    padding-left: 16px;
    padding-top: 2px;
    width: 834px;
    height: 32px;
    color: white;
    vertical-align: middle;
    line-height: normal;
    font-size: 24px;
    background: #3E628F;
}
#HeaderContainer > .HeaderSub {
  font-family: helvetica;
  position: absolute;
  z-index: 4;
  margin-top: 16px;
  margin-left: 355px;
  width: auto;
  height: 32px;
  color: #ddd;
  vertical-align: middle;
  line-height: normal;
  font-size: 16px;
}
#HeaderContainer > .Background-Image {
    background: url("https://navy.deps.mil/peoeis/sites/nen/res/OneSource_Banner_Image.png");
    width: 850px;
    height: 279px;
    margin-top: 40px;
    position: absolute;
    z-index: 1;
    border-bottom-right-radius: 4px;
    border-bottom-left-radius: 4px;
    overflow: hidden;
    background-position: right;
}
#HeaderContainer > .GUI {
    background: url("https://navy.deps.mil/peoeis/sites/nen/res/OneSource_GUI.png");
    width: 460px;
    height: 279px;
    margin-top: 40px;
    overflow: hidden;
    border-radius: 2px;
    position: absolute;
    z-index: 2;
    
}
#HeaderContainer > .diag-noselect {
    height: 279px;
    width: 60px;
    display: block;
    position: absolute;
    transform: skewX(-23deg);
    margin-left: 355px;
    margin-top: 40px;
    cursor: auto;
    z-index: 5;
}
#HeaderContainer > .C {
    height: 145px;
    width: 140px;
    display: block;
    position: absolute;
    margin-top: 106px;
    border-radius: 100px;
    margin-left: 106px;
    cursor: pointer;
    z-index: 6;
}
#HeaderContainer > .C:hover {
    z-index: 6;
}
#HeaderContainer > .TL {
    height: 140px;
    width: 176px;
    display: block;
    position:...

JavaScript

jQuery(document).ready(function() {
    jQuery(".toggle").next(".hidden").hide();
    jQuery(".toggle").click(function() {
        $('.active').not(this).toggleClass('active').next('.hidden').fadeToggle(100);
        $(this).toggleClass('active').next().fadeToggle(500);

    });
});

//<meta http-equiv="X-UA-Compatible" content="IE=8" />