(function($){
  $('ul.tabs > li').each(function(){
    var list = $(this).closest('ul.tabs');
    var item = $(this);
    var pane = $(this).closest('ul').parent().find('div.pane');
    var ancor = $(this).find('>h2 a');
    
    ancor.click(function(e){
      e.preventDefault();
      var container = $(this).closest('li');
      if(!container.is('.active')){
	var active = list.find('li.active');
	pane.find('div.content').appendTo(active);
	container.find('div.content').appendTo(pane);
	active.removeClass('active');
	container.addClass('active');
      }
      Cufon.replace('#middle .pane h3', { fontFamily: 'Section Bold' });
      Cufon.replace('#middle .pane h3 .theOne', { fontFamily: 'Section Bold Caps' });
    });
  });
	
})(jQuery);

