$(document).ready(function() {
  // Run the equal height script on all DIVs with a class of columns
  $('.columns').equalHeights();
  // We are calling the rollover effect here on all images with class nav
  $('img.nav').rollover(true);
  // Match all <A/> links with a title tag and use it as the content (default).
  $('a.tip[title]').qtip({
    position: {
      my: 'bottom center',  // Position my top left...
      at: 'top center', // at the bottom right of...
    },
    style: {
      classes: 'ui-tooltip-light ui-tooltip-shadow'
   }
  });
});

