//
// home.js
//
//   This is where all the javascript required by your design is written.
//

$(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.
  $("#getstarted-11").addClass("Wrap-10-11").hide();
  $("#getstarted-10").addClass("Wrap-10-11");
  $(".Wrap-10-11").hover(
    function(){ $("#getstarted-11").show(); $("#getstarted-10").hide(); },
    function(){ $("#getstarted-10").show(); $("#getstarted-11").hide(); });
  $("#getstarted-13").addClass("Wrap-12-13").hide();
  $("#getstarted-12").addClass("Wrap-12-13");
  $(".Wrap-12-13").hover(
    function(){ $("#getstarted-13").show(); $("#getstarted-12").hide(); },
    function(){ $("#getstarted-12").show(); $("#getstarted-13").hide(); });
  $("#getstarted-15").addClass("Wrap-14-15").hide();
  $("#getstarted-14").addClass("Wrap-14-15");
  $(".Wrap-14-15").hover(
    function(){ $("#getstarted-15").show(); $("#getstarted-14").hide(); },
    function(){ $("#getstarted-14").show(); $("#getstarted-15").hide(); });
  $("#getstarted-22").addClass("Wrap-18-22").hide();
  $("#getstarted-18").addClass("Wrap-18-22");
  $(".Wrap-18-22").hover(
    function(){ $("#getstarted-22").show(); $("#getstarted-18").hide(); },
    function(){ $("#getstarted-18").show(); $("#getstarted-22").hide(); });
  $("#getstarted-23").addClass("Wrap-19-23").hide();
  $("#getstarted-19").addClass("Wrap-19-23");
  $(".Wrap-19-23").hover(
    function(){ $("#getstarted-23").show(); $("#getstarted-19").hide(); },
    function(){ $("#getstarted-19").show(); $("#getstarted-23").hide(); });
  $("#getstarted-24").addClass("Wrap-20-24").hide();
  $("#getstarted-20").addClass("Wrap-20-24");
  $(".Wrap-20-24").hover(
    function(){ $("#getstarted-24").show(); $("#getstarted-20").hide(); },
    function(){ $("#getstarted-20").show(); $("#getstarted-24").hide(); });
  $("#getstarted-25").addClass("Wrap-21-25").hide();
  $("#getstarted-21").addClass("Wrap-21-25");
  $(".Wrap-21-25").hover(
    function(){ $("#getstarted-25").show(); $("#getstarted-21").hide(); },
    function(){ $("#getstarted-21").show(); $("#getstarted-25").hide(); });

});

