// initialize plugins
$(function() {
    $("ul.sf-menu").supersubs({
        minWidth: 15,
        maxWidth: 40
    }).superfish({
        delay: 200, // one second delay on mouseout 
        animation: { opacity: 'show', height: 'show' }  // fade-in and slide-down animation 
    });

    function equalizeCols() {
        var tallestCol = 0;
        $(".eq-height-col").each(function() {
            if ($(this).height() > tallestCol) {
                tallestCol = $(this).height();
            }
        });
        //alert   (tallest_col);
        $(".eq-height-col").each(function() {
            $(this).height(tallestCol);
        });
    }
    setTimeout(equalizeCols, 100);
});

