// JavaScript Document

// kill right click home page logo
$(document).ready(function(){
    $('.bannerTitle').bind("contextmenu",function(e){
        return false;
    });
});


// equal heights
function equalHeight(group) {
    tallest = 0;
    group.each(function() {
        thisHeight = $(this).height();
        if(thisHeight > tallest) {
            tallest = thisHeight;
        }
    });
    group.height(tallest);
}


$(document).ready(function() {
    equalHeight($(".equalHeight"));
    equalHeight($(".equalHeight"));
});



$(document).ready(function() {
    $('A[rel="External"]').click(function(){
        window.open( $(this).attr('href') );
        return false;}).attr('title', 'Opens in a new window');
});









