// ---------------------------------------
// Rollovers
// ---------------------------------------

if (document.images) {
	var imageNames = new Array("home","nutritionpledge","foodfun","getactive","parentsandteachers","aboutlfe","sweepstakes","healthyeating","physicalactivity","aboutnutritionpledge");
	var imagePath = "images/nav-";
	var imageExtension = ".gif";
	var allMyImages = new Array(imageNames.length);
	var curName = "";
	var gWhichGlowing = "";
	
	for (var i=0; i<imageNames.length; i++) {
		curName = imageNames[i];
		allMyImages[curName] = new Array("over","out");
		allMyImages[curName]["out"] = new Image();
		allMyImages[curName]["out"].src = imagePath+curName+imageExtension;
		allMyImages[curName]["over"] = new Image();
		allMyImages[curName]["over"].src = imagePath+curName+"-over"+imageExtension;
	}
}

function Glow(whichImage) {
	if (document.images) {
		document[whichImage].src = allMyImages[whichImage]["over"].src;
		gWhichGlowing = whichImage;
	}
}

function DeGlow(){
	if (document.images) {
		document[gWhichGlowing].src = allMyImages[gWhichGlowing]["out"].src;
		gWhichGlowing = "";
	}
}

// This replaces sage_ev
function clickTag(n, v)
{
	sage_ev(n, v);
}