function notYet(){
    alert("Coming soon.");
}

var ConstInline = 'inline';
var ConstNone   = 'none';

function getStyle(oElm, strCssRule){
	var strValue = "";
	if(document.defaultView && document.defaultView.getComputedStyle){
		strValue = document.defaultView.getComputedStyle(oElm, "").getPropertyValue(strCssRule);
	}
	else if(oElm.currentStyle){
		strCssRule = strCssRule.replace(/\-(\w)/g, function (strMatch, p1){
			return p1.toUpperCase();
		});
		strValue = oElm.currentStyle[strCssRule];
	}
	return strValue;
}

// Moves image for employee profiles
function showStar(oLink) {
    oLink.children[0].src = 'images/star_star.gif';
}

function hideStar(oLink) {
    oLink.children[0].src = 'images/spacer.gif';
}

// Moves images for main navigation
function showNavStar(sId) {
    document.getElementById(sId).src = 'images/star_What.gif';
}

function hideNavStar(sId) {
    document.getElementById(sId).src = 'images/spacer.gif';
}

// Moves images for main navigation
function showNavStarSub(sId) {
    document.getElementById(sId).src = 'images/star_What.gif';
}



