Calling a jquery function from another jquery function

Calling a jquery function from another jquery function

I'm a newbie to jquery and would like to do this:

The function setEqualHeight(columns) fires on document.ready and works well. However, in the second function (the tab function) I would like to to call the setEqualHeight function  in order to recalculate the div heights again. I would like to do this in the "onclick function". How?



//Sätter kolumnerna till sama höjd
function setEqualHeight(columns)
 {
 var tallestcolumn = 0;
 columns.each(
 function()
 {
 currentHeight = $(this).height();
 if(currentHeight > tallestcolumn)
 {
 tallestcolumn  = currentHeight;
 }
 }
 );
 columns.height(tallestcolumn);
 }
$(document).ready(function() {
 setEqualHeight($(".content  > div"));
});


//slut


//tab function
$(document).ready(function() {                     
                         
    //Default Action
    $(".tab_content").hide(); //Hide all content
    $("ul.tabs li:first").addClass("active").show(); //Activate first tab
    $(".tab_content:first").show(); //Show first tab content
   
    //On Click Event
    $("ul.tabs li").click(function() {                      
                                  
        $("ul.tabs li").removeClass("active"); //Remove any "active" class       
        $(this).addClass("active"); //Add "active" class to selected tab
        $(".tab_content").hide(); //Hide all tab content
        var activeTab = $(this).find("a").attr("href"); //Find the rel attribute value to identify the active tab + content
        $(activeTab).fadeTo('fast'); //Fade in the active content
           
        return false;
    });

});

//slut