
$(document).ready(function(){

  // This is required for the PNG fix to work.
  if (window.DD_belatedPNG)
    DD_belatedPNG.fix('.pngimg');

  // This is some javascript to stop IE from displaying the img alt attributes
  // when you mouse over imagess.  If you would like IE to display the alt attributes,
  // just comment out the following 4 lines.  Don't worry, if you leave this in 
  // place, your ALT attributes are still readable by the search engines.
  var tmpalt;
  $("img").hover( 
    function(){ tmpalt = $(this).attr( "alt" ); $(this).attr( "alt", "" ); },
    function(){ $(this).attr( "alt", tmpalt ); });

  // This is code to handle all of the _linkover events.  It works by
  // creating a special Wrap class, adding it to the link and linkover
  // divs of each link and linkover pair, and assigning a hover event to
  // that.
  $("#Home_linkover").addClass("Wrap-4-5").hide();
  $("#Home_link").addClass("Wrap-4-5");
  $(".Wrap-4-5").hover(
    function(){ $("#Home_linkover").show(); $("#Home_link").hide(); },
    function(){ $("#Home_link").show(); $("#Home_linkover").hide(); });
  $("#AboutUs_linkover").addClass("Wrap-6-7").hide();
  $("#AboutUs_link").addClass("Wrap-6-7");
  $(".Wrap-6-7").hover(
    function(){ $("#AboutUs_linkover").show(); $("#AboutUs_link").hide(); },
    function(){ $("#AboutUs_link").show(); $("#AboutUs_linkover").hide(); });
  $("#Labs_linkover").addClass("Wrap-8-9").hide();
  $("#Labs_link").addClass("Wrap-8-9");
  $(".Wrap-8-9").hover(
    function(){ $("#Labs_linkover").show(); $("#Labs_link").hide(); },
    function(){ $("#Labs_link").show(); $("#Labs_linkover").hide(); });
  $("#Team_linkover").addClass("Wrap-10-11").hide();
  $("#Team_link").addClass("Wrap-10-11");
  $(".Wrap-10-11").hover(
    function(){ $("#Team_linkover").show(); $("#Team_link").hide(); },
    function(){ $("#Team_link").show(); $("#Team_linkover").hide(); });
  $("#Projects_linkover").addClass("Wrap-12-13").hide();
  $("#Projects_link").addClass("Wrap-12-13");
  $(".Wrap-12-13").hover(
    function(){ $("#Projects_linkover").show(); $("#Projects_link").hide(); },
    function(){ $("#Projects_link").show(); $("#Projects_linkover").hide(); });
  $("#Archives_linkover").addClass("Wrap-14-15").hide();
  $("#Archives_link").addClass("Wrap-14-15");
  $(".Wrap-14-15").hover(
    function(){ $("#Archives_linkover").show(); $("#Archives_link").hide(); },
    function(){ $("#Archives_link").show(); $("#Archives_linkover").hide(); });
  $("#Products_linkover").addClass("Wrap-16-17").hide();
  $("#Products_link").addClass("Wrap-16-17");
  $(".Wrap-16-17").hover(
    function(){ $("#Products_linkover").show(); $("#Products_link").hide(); },
    function(){ $("#Products_link").show(); $("#Products_linkover").hide(); });
  $("#ContactUs_linkover").addClass("Wrap-18-19").hide();
  $("#ContactUs_link").addClass("Wrap-18-19");
  $(".Wrap-18-19").hover(
    function(){ $("#ContactUs_linkover").show(); $("#ContactUs_link").hide(); },
    function(){ $("#ContactUs_link").show(); $("#ContactUs_linkover").hide(); });
  $("#Location_linkover").addClass("Wrap-34-35").hide();
  $("#Location_link").addClass("Wrap-34-35");
  $(".Wrap-18-19").hover(
    function(){ $("#Location_linkover").show(); $("#Location_link").hide(); },
    function(){ $("#Location_link").show(); $("#Location_linkover").hide(); })































});

