jQuery.fn.equalize = function()
{
  var max = 0;
  $(this).each(function(){
    max = Math.max(max, $(this).height());
  }).height(max+'px');
};

jQuery(function($){
  
  $('#featured .tabs a').featureList({
    output: '#featured .output li',
    start_item: 0,
    transition_interval: 10000
  });
  
  $('#featured .output .description').css('opacity', .75);
  
  $('#home-mid .featured h3').equalize();
  $('#home-mid .featured .wrap').equalize();
  
});

