$(document).ready(function(){
    var $tabs = $("#tabs").tabs();
    FertilityLifeLinesV2.checkLeftHeight();
    $("#tabs").bind('tabsshow', function(event,ui){
       FertilityLifeLinesV2.checkLeftHeight();
    });
     $('a.pilink').click(function() { // bind click event to link
       $tabs.tabs('select', 5); // switch to sixth tab
       return false;
    });
});