$(document).ready(function() {

    $('#overview_section > ul').tabs({ fx: { height: 'toggle', opacity: 'toggle' } });
    $('#services_list > ul').tabs({ fx: { height: 'toggle', opacity: 'toggle' } });
    $('#success_stories > ul').tabs({ fx: { height: 'toggle', opacity: 'toggle' } });
    $('#about_us > ul').tabs({ fx: { height: 'toggle', opacity: 'toggle' } });

   $('#overview_section a.retract').click(function() {
    
    if (false == $($(this).attr('href')).hasClass('ui-tabs-hide')) {
      
         $('#overview_section > ul').tabs( 'select' ,'#welcome'); 
    }

    });  

});