
function loadImages()	{
	this[1] = new Image()
	this[1].src = "images/nav_home-on.gif"
	this[2] = new Image()
	this[2].src = "images/nav_massage-on.gif"
	this[3] = new Image()
	this[3].src = "images/nav_spa-on.gif"
	this[4] = new Image()
	this[4].src = "images/nav_waxing-on.gif"
	this[5] = new Image()
	// this[5].src = "images/nav_nails-on.gif"
	this[5].src = "images/nav_gifts-on.gif"
	this[6] = new Image()
	// this[6].src = "images/nav_nutrition-on.gif"
	this[6].src = "images/nav_spa_mamas-on.gif"
	this[7] = new Image()
	this[7].src = "images/nav_acupuncture-on.gif"
	this[8] = new Image()
	this[8].src = "images/nav_skincare-on.gif"
	this[9] = new Image()
	this[9].src = "images/nav_contact-on.gif"
	this[10] = new Image()
	this[10].src = "images/nav_lashes-on.gif"
	this[11] = new Image()
	this[11].src = "images/nav_tintmakeup-on.gif"
	this[12] = new Image()
	this[12].src = "images/nav_peels-on.gif"
	this[13] = new Image()
	this[13].src = "images/nav_men-on.gif"
}

if (document.images)	{	loadImages()	}

function navOn(imgName) {
	
	if (imgName == "home")	{	document.images[imgName].src = this[1].src	}
	if (imgName == "massage")	{	document.images[imgName].src = this[2].src	}
	if (imgName == "spa")	{	document.images[imgName].src = this[3].src	}
	if (imgName == "waxing")	{	document.images[imgName].src = this[4].src	}
	if (imgName == "gifts")	{	document.images[imgName].src = this[5].src	}
	// if (imgName == "nails")	{	document.images[imgName].src = this[5].src	}
	// if (imgName == "nutrition")	{	document.images[imgName].src = this[6].src	}
	if (imgName == "spa_mamas")	{	document.images[imgName].src = this[6].src	}
	if (imgName == "acupuncture")	{	document.images[imgName].src = this[7].src	}
	if (imgName == "skincare")	{	document.images[imgName].src = this[8].src	}
	if (imgName == "contact")	{	document.images[imgName].src = this[9].src	}
	if (imgName == "lashes")	{	document.images[imgName].src = this[10].src	}
	if (imgName == "tintmakeup")	{	document.images[imgName].src = this[11].src	}
	if (imgName == "peels")	{	document.images[imgName].src = this[12].src	}
	if (imgName == "men")	{	document.images[imgName].src = this[13].src	}
}

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



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



