//
// home.js
//


$(document).ready(function(){

  if (window.DD_belatedPNG)
    DD_belatedPNG.fix('.pngimg');


  var tmpalt;
  $("img").hover( 
    function(){ tmpalt = $(this).attr( "alt" ); $(this).attr( "alt", "" ); },
    function(){ $(this).attr( "alt", tmpalt ); });


  $("#teamH").addClass("Wrap-9-10").hide();
  $("#team").addClass("Wrap-9-10");
  $(".Wrap-9-10").hover(
    function(){ $("#teamH").show(); $("#team").hide(); },
    function(){ $("#team").show(); $("#teamH").hide(); });
  
  
  $("#formsH").addClass("Wrap-11-12").hide();
  $("#forms").addClass("Wrap-11-12");
  $(".Wrap-11-12").hover(
    function(){ $("#formsH").show(); $("#forms").hide(); },
    function(){ $("#forms").show(); $("#formsH").hide(); });
  
  $("#toptipH").addClass("Wrap-13-14").hide();
  $("#toptip").addClass("Wrap-13-14");
  $(".Wrap-13-14").hover(
    function(){ $("#toptipH").show(); $("#toptip").hide(); },
    function(){ $("#toptip").show(); $("#toptipH").hide(); });
  
  

  
});

