
Cufon.replace('.tours', { fontFamily: 'ArialBlack' });
Cufon.replace('#homeBottomLinks', { hover: true,  fontFamily: 'ArialBlack' });
Cufon.replace('#headerLinks', { hover: true,  fontFamily: 'ArialBlack' });
Cufon.replace('.entry-title', { fontFamily: 'ArialBlack' });
Cufon.replace('#contentInfoLeft h4', { fontFamily: 'ArialBlack' });
Cufon.replace('#contentInfoLeft h3', { fontFamily: 'ArialBlack' });
Cufon.replace('.innerPhila', { fontFamily: 'ArialBlack' });



 jQuery(document).ready(function($) {
   $("#letstake").hover(
  function () {
    $(this).addClass("letstakeHover");
  },
  function () {
    $(this).removeClass("letstakeHover");
  }
);

$(".myGlide").hover(
  function () {
    $(this).addClass("homeGlide");
  },
  function () {
    $(this).removeClass("homeGlide");
  }
);

$(".myRide").hover(
  function () {
    $(this).addClass("homeRide");
  },
  function () {
    $(this).removeClass("homeRide");
  }
);

$(".myStride").hover(
  function () {
    $(this).addClass("homeStride");
  },
  function () {
    $(this).removeClass("homeStride");
  }
);

$(".facebookOff").hover(
  function () {
    $(this).addClass("facebookOn");
  },
  function () {
    $(this).removeClass("facebookOn");
   }
);

$(".twitterOff").hover(
  function () {
    $(this).addClass("twitterOn");
  },
  function () {
    $(this).removeClass("twitterOn");
   }
);



 });
