$(document).ready(function() {
    //swap image for hover effect (doesn't work for rootpage)
    $('.customNav a img.hover').hover(
            function() {
                this.src = this.src.replace(/\.gif$/, '_act.gif');
            },
            function() {
                this.src = this.src.replace(/_act\.gif$/, '.gif');
            }
        );

    //dynamically set padding for frontpage
    if ($('.fpage #contentLeft').height() < $('.fpage #contentRight').height()) {
        var padtop = $('.fpage #contentRight').height() - $('.fpage #contentLeft').height() -10;
        $('.fpage .posfix').css({ 'padding-top': padtop })
    }

    //dynamically set padding for columns2
    if ($('.columns2 #contentLeft').height() < $('.columns2 #contentCenter').height()) {
        var padtop = $('.columns2 #contentCenter').height() - $('.columns2 #contentLeft').height() - 10;
        $('.columns2 .posfix').css({ 'padding-top': padtop })
    }

}); 

