
function loadImages()	{
	this[1] = new Image()
	this[1].src = "images/nav_benefits-on.jpg"
	this[2] = new Image()
	this[2].src = "images/nav_howitworks-on.jpg"
	this[3] = new Image()
	this[3].src = "images/nav_products-on.jpg"
	this[4] = new Image()
	this[4].src = "images/nav_who-on.jpg"
	this[5] = new Image()
	this[5].src = "images/nav_login-on.jpg"
	this[6] = new Image()
	this[6].src = "images/nav_contact-on.jpg"
	this[7] = new Image()
	this[7].src = "images/nav_cart-on.jpg"
	this[8] = new Image()
	this[8].src = "images/nav_tips-on.jpg"
	this[9] = new Image()
	this[9].src = "images/nav_blog-on.jpg"
}

if (document.images)	{	loadImages()	}

function navOn(imgName) {
	
	if (imgName == "benefits")		{	document.images[imgName].src = this[1].src	}
	if (imgName == "howitworks")	{	document.images[imgName].src = this[2].src	}
	if (imgName == "products")		{	document.images[imgName].src = this[3].src	}
	if (imgName == "who")			{	document.images[imgName].src = this[4].src	}
	if (imgName == "login")			{	document.images[imgName].src = this[5].src	}
	if (imgName == "contact")		{	document.images[imgName].src = this[6].src	}
	if (imgName == "cart")			{	document.images[imgName].src = this[7].src	}
	if (imgName == "tips")			{	document.images[imgName].src = this[8].src	}
	if (imgName == "blog")			{	document.images[imgName].src = this[9].src	}
}

function navOff(imgName) {
	if (imgName != "none") {
		document.images[imgName].src = "images/nav_" + imgName + "-off.jpg"
	}
}



function productWindow(whichImg) {
	var win = window.open(whichImg,"productWindow","width=700,height=585,scrollbars=yes,resizable=yes,location=no,directories=no,menubar=no,toolbar=no,status=yes")
	win.focus()
}


function newSite(whichImg) {
	var newWin = window.open(whichImg,"newWindow","width=650,height=500,scrollbars=yes,resizable=yes,location=yes,directories=no,menubar=no,toolbar=no,status=yes")
	newWin.focus()
}


