(function($){
  $('ul.tabs-homepage').live('click', function(e){
    e.preventDefault();
    $link = $(e.target).closest('a')
    $(this).attr('selected', $link.attr('href'));
    $link
      .addClass('current')
      .closest('li')
      .siblings()
      .children('a')
      .removeClass('current');
      
    $(this).trigger('change');
  });
  
  
  $('ul.tabs-homepage').live('change', function(e){
      selected = $(this).attr('selected'); // the href property of the link, with #
      $pane = $('div' + selected);
      $(this).data('pane').hide();
      $pane.show();
      $(this).data('pane', $pane);
  });
  
  
  $(document).ready(function(){
    $('ul.tabs-homepage').data('pane', $('#container-right .pane').eq(0));
  });
})(jQuery)
