function activeNav(m) {
document.getElementById('node' + m).style.backgroundColor="#EDECA7"
}

function inactiveNav(m) {
document.getElementById('node' + m).style.backgroundColor="transparent"
}

function buttonActive(n) {
document.getElementById('button' + n).style.backgroundImage='url(common/images/bg-floorplans-on.png)'
}

function buttonInactive(n) {
document.getElementById('button' + n).style.backgroundImage='url(common/images/bg-floorplans.png)'
}

	// Open a brightcove video player popup.
	// Pass in the full URL, and 'notabs' if the player uses 'player_library.jsp' (smaller popup)
function vidplayer (url, opts) {
    var w= 1010, h=590;

    if (typeof url == 'undefined' || url == null)
        return false;

    if (typeof opts != 'undefined' && opts == "notabs") {
        w= 929; h= 663;
    }

    window.open(url, "extremeMakeover", "left=0,top=0,width=" + w + ",height=" + h + ",location=no,toolbar=no,menubar=no,resizable=no,scrollbars=yes");
}