
// Hand truck features page
$(document).ready(function() {
    $('a#base-plate').mouseenter(function(){
      $('a.active').removeClass('active');
      $('div#hand-truck-features div#features-left img').attr('src', '/images/features/base-plate.jpg');
      $(this).addClass('active');
      $('div#hand-truck-features div#features-left h3').html('Ribbed Base Plate');
      $('div#hand-truck-features div#features-left p').html('Our ribbed base plates make loading and unloading a breeze. Plus, it provides added strength and durability for those heavy loads.');
    });
    $('a#steel-tube').mouseenter(function(){
      $('a.active').removeClass('active');
      $('div#hand-truck-features div#features-left img').attr('src', '/images/features/tubing.jpg');
      $(this).addClass('active');
      $('div#hand-truck-features div#features-left h3').html('Steel Tube Frame');
      $('div#hand-truck-features div#features-left p').html('MoJack hand trucks are built sturdier than the competition. Our larger diameter frame makes MoJack hand trucks not only stronger, but the grip is designed for comfortable handling of sizeable loads.');
    });
    $('a#textured-finish').mouseenter(function(){
      $('a.active').removeClass('active');
      $('div#hand-truck-features div#features-left img').attr('src', '/images/features/texture.jpg');
      $(this).addClass('active');
      $('div#hand-truck-features div#features-left h3').html('Textured Powder-Coated Finish');
      $('div#hand-truck-features div#features-left p').html('The durable finish will stand up to weather and wear and it creates a comfortable grip when handling heavy loads.');
    });
    $('a#flared-fenders').mouseenter(function(){
      $('a.active').removeClass('active');
      $('div#hand-truck-features div#features-left img').attr('src', '/images/features/loadsmart.jpg');
      $(this).addClass('active');
      $('div#hand-truck-features div#features-left h3').html('LoadSmart Design');
      $('div#hand-truck-features div#features-left p').html('Our patent pending design positions the load over the axel to make it easier to handle the load. ');
     });
    $('a#extendable-feature').mouseenter(function(){
      $('a.active').removeClass('active');
      $('div#hand-truck-features div#features-left img').attr('src', '/images/features/extend.jpg');
      $(this).addClass('active');
      $('div#hand-truck-features div#features-left h3').html('Extendable Feature');
      $('div#hand-truck-features div#features-left p').html('Accommodate awkward loads easier with the MoJack patent pending extenability feature.  It’s built into the MoJack 400lb extendable convertible hand truck and the MoJack 800lb extendable convertible hand truck.');
    });
    $('a#telescoping-handles').mouseenter(function(){
      $('a.active').removeClass('active');
      $('div#hand-truck-features div#features-left img').attr('src', '/images/features/telescoping.jpg');
      $(this).addClass('active');
      $('div#hand-truck-features div#features-left h3').html('Telescoping Handles');
      $('div#hand-truck-features div#features-left p').html('The MoJack 800lb Appliance hand truck is designed smarter. It accommodates loads of all sizes with telescoping handles, compact for storage, extendable for maneuverability. ');
    });
   $('a#loadsmart-design').mouseenter(function(){

      $('a.active').removeClass('active');
      $('div#hand-truck-features div#features-left img').attr('src', '/images/features/fenders.jpg');
      $(this).addClass('active');
      $('div#hand-truck-features div#features-left h3').html('Flared Fenders');
      $('div#hand-truck-features div#features-left p').html('The flared fenders on the MoJack hand trucks gives you a solid base for handling large heavy loads.');
    });
 $('a#loadkicker').mouseenter(function(){

      $('a.active').removeClass('active');
      $('div#hand-truck-features div#features-left img').attr('src', '/images/features/loadkicker.jpg');
      $(this).addClass('active');
      $('div#hand-truck-features div#features-left h3').html('LoadKicker<sup>&trade;</sup>');
      $('div#hand-truck-features div#features-left p').html("The patent-pending LoadKicker<sup>&trade;</sup> makes moving smarter by moving items off your hand truck with the press of a foot. Quickly and easily place your items where you need them by sliding your load off the base plate. The LoadKicker<sup>&trade;</sup> is available as an accessory for the MoJack 800 steel, 800 convertible, 800 convertible extendible and 900 twin handle hand trucks.");
    });
  });
// END Hand truck features page

