$(document).ready(function () {
    
    // Add highlight to title (set highlight text)
    $('#header .highlight').text($('#header .title').text());
    
    // Set heights the same
    sidebarHeight = $('.sidebar').height();
    contentHeight = $('.main').height();         
    
    if (sidebarHeight > contentHeight) {
        //$('.main').height(sidebarHeight);                               
    }
    
    if (contentHeight > sidebarHeight) {
        //$('.sidebar').height(contentHeight);                                 
    }                             
     
});
