// PRELOAD NEW IMAGES
navImgs = ["home","products","organics","gifts","stockists","about","contact"]

	buttons = new Array();
	buttons_o = new Array();

for (i in navImgs)
	{
	buttons[i] = new Image();
	buttons_o[i] = new Image();		
	buttons[i].src  = "images/" + navImgs[i] + ".gif";
	buttons[i].name  = navImgs[i];
	buttons_o[i].src  = "images/" + navImgs[i] + "_ovr.gif";
	buttons_o[i].name  = navImgs[i] + "_ovr";
	}
	
	// ROLLOVER FUNCTIONS

function imgOvr(thisImg)	
	{
	document[thisImg].src = "images/" + thisImg + "_ovr.gif";
	}
	
function imgOut(thisImg)	
	{
	document[thisImg].src = "images/" + thisImg + ".gif";
	}	
	
	// CREATE NEW WINDOW FOR NUTRITIONAL INFORMATION
function newWindow(imgLocation, imgWidth, imgHeight) 
	{
	var features = "width=" + imgWidth + ",height=" + imgHeight + ",scrollbars=yes,resizable=no";
	if (window.imgWindow && !window.imgWindow.closed)
		{
		window.imgWindow.focus()
		imgWindow.location=imgLocation
		}
	else
		{
		imgWindow = window.open(imgLocation,"imgWin", features)
		window.imgWindow.focus()
		}
	}
