$(function() {
  
  equalHeight($('#primary, #secondary'));
  
  $('.corporate #secondary .frame').corner('8px');
  
  $('#tomtom-winners li').click(function() {
    $(this).addClass('ui-tabs-selected').siblings().removeClass('ui-tabs-selected');
    $('#winners-' + $(this).attr('id')).show().siblings().hide();
    return false;
  });
  
});