$(document).ready(function(){
    if ($('#active-tab').length != 0){
        var cls = $('#active-tab').val();
        $('.region-header .menu li.' + cls + ' a').addClass('active');
        $('.region-header .menu li.' + cls).css({'background' : 'url("/imgs/hb/utils/orange_left_tab.gif") no-repeat scroll left top transparent', 'color' : '#FFFFFF'});
    }
    // show information tab as selected if there is no active drupal tab
    if ($('.region-header .menu li.leaf a.active').length == 0){
        $('.region-header .menu li:last').prev().children().css({'background' : 'url("/imgs/hb/utils/orange_right_tab.gif") no-repeat scroll right top transparent', 'color' : '#FFFFFF'});
        $('.region-header .menu li:last').prev().css({'background' : 'url("/imgs/hb/utils/orange_left_tab.gif") no-repeat scroll left top transparent', 'color' : '#FFFFFF'});
    }
});
