jQuery.noConflict();
jQuery(document).ready(function(){
 jQuery('ul.tabNav a').click(function() {
  var curChildIndex = jQuery(this).parent().prevAll().length + 1;
  jQuery(this).parent().parent().children('.current').removeClass('current');
  jQuery(this).parent().addClass('current');
  jQuery(this).parent().parent().next('.tabContainer').children('.current').show('fast',function() {
   jQuery(this).removeClass('current');
   jQuery(this).parent().children('div:nth-child('+curChildIndex+')').hide('normal',function() {
    jQuery(this).addClass('current');
   });
  });
  return false;        
 });
});












