	var imgPrefix = "nav";
	var imgPath = "http://storefinder.mmmars.com/milkywaybar/images2/";
	
	for(var x=0;x<=6;x++){
		eval(imgPrefix  + x + ' = new Image();');
		eval(imgPrefix  + x + '.src = "' + imgPath + imgPrefix + x + '.gif"');

		eval(imgPrefix  + x + '_on = new Image();');
		eval(imgPrefix  + x + '_on.src = "' + imgPath + imgPrefix + x + '_on.gif"');
	}
	
	function init(){
		if(typeof(activepage) != 'undefined'){
			document.getElementById("i" + activepage).src = eval(imgPrefix + activepage + '_on.src');
		
			var theImg = document.getElementById("i" + activepage );
			theImg.onmouseover = null;
			theImg.onmouseout = null;
		}
	}
	
	function doRoll(theImg, imgNum, setTo){
		if(setTo == "on"){
			theImg.src = eval(imgPrefix + imgNum + '_on.src');
		}
		else{
			theImg.src = eval(imgPrefix + imgNum + '.src');
		}
	}
	
	function popOde(){
		window.open('ode.html', 'window_ode', 'width=543,height=336,scrollbars=0,location=0,status=0,menubar=0,toolbar=0,resizeable=0')
	}
	
	function popNutrition(section){
		window.open('products_nutrition.html#' + section, 'window_nutr', 'height=500,width=384,scrollbars=yes')
	}