/**
 * IE needs a separate value so declare as global and adjust in meta.php
 **/
var moodleroomsThemeMenuHeight = 27;

/**
 * Override menu positioning
 *
 * @param array pos X Y coordinates
 * return array
 **/
function pageThemeAdjustMenuHeight(pos) {
    pos[1] = pos[1] + moodleroomsThemeMenuHeight; // Bring it down some

    return pos;
}

/**
 * Override button styles
 *
 * @param object el DOM Element
 * return void
 **/
function pageThemeButtonStyles(el) {
    el.style.fontWeight = 'bold';
    el.style.color      = '#666666';
}