/* function hiLite()
{
	var d = document;
	if (!d.getElementById ) return;
	var div1 = d.getElementById ('topRightContent');
	div1.onmouseover = function() {
		div1.className = "cf oh3";
	}
	div1.onmouseout = function() {
		div1.className = "cf";
	}
} */

var DOM = (document.getElementById) ? 1 : 0;
function changeCont(pk) {
	if (!document.getElementById) return
	    var	dietplan=pk; 	
		currShow.style.visibility="hidden";          
		var flipOn = document.getElementById(dietplan); 
		flipOn.style.visibility="visible";
		currShow=document.getElementById(dietplan);
		return false;
}

