
jQuery(document).ready(function($){
    
if ($('div.wrapper-2').height() < $('div.wrapper-1').height()) {
    $('div.wrapper-2').css({'height':$('div.wrapper-1').height()});
    $('div.wrapper-3').css({'height':$('div.wrapper-2').height()});
} else if($('div.wrapper-2').height() > $('div.wrapper-1').height()) {
    $('div.wrapper-1').css({'height':$('div.wrapper-2').height()});
    $('div.wrapper-3').css({'height':$('div.wrapper-2').height()});
}

//Add .selected class to current link
/*
var $curLink = $('#currentLoc').text();
var $selected = $('#main_navigation li a');
if ($curLink == 1) {
   $selected.each(function() {
        if ($(this).attr('title') == 'Home') {
            $(this).addClass('selected')
        }
    });
} else if ($curLink == 2) {
    $selected.each(function() {
        if ($(this).attr('title') == 'Celebrity') {
            $(this).addClass('selected')
        }
    });
} else if ($curLink == 3) {
    $selected.each(function() {
        if ($(this).attr('title') == 'TVMovie') {
            $(this).addClass('selected')
        }
    });
}
*/
});

