
function loadImages()	{
	this[1] = new Image()
	this[1].src = "images/homeNav_login-on.jpg"
	this[2] = new Image()
	this[2].src = "images/homeNav_contact-on.jpg"
	this[3] = new Image()
	this[3].src = "images/homeNav_cart-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/home_banana-on.gif"
	this[9] = new Image()
	this[9].src = "images/home_strawberry-on.gif"
	this[10] = new Image()
	this[10].src = "images/home_kiwi-on.gif"
	this[11] = new Image()
	this[11].src = "images/home_carrot-on.gif"
	this[12] = new Image()
	this[12].src = "images/home_apple-on.gif"

}

if (document.images)	{	loadImages()	}

function home_navOn(imgName) {
	
	if (imgName == "login")		{	document.images[imgName].src = this[1].src	}
	if (imgName == "contact")	{	document.images[imgName].src = this[2].src	}
	if (imgName == "cart")		{	document.images[imgName].src = this[3].src	}
	if (imgName == "ignore")	{	document.images[imgName].src = this[4].src	}
	if (imgName == "ignore")	{	document.images[imgName].src = this[5].src	}
	if (imgName == "ignore")	{	document.images[imgName].src = this[6].src	}
	if (imgName == "ignore")	{	document.images[imgName].src = this[7].src	}
}

function home_navOff(imgName) {
	document.images[imgName].src = "images/homeNav_" + imgName + "-off.jpg"
}


function home_fruitOn(imgName) {
	
	if (imgName == "banana")		{	document.images[imgName].src = this[8].src	}
	if (imgName == "strawberry")	{	document.images[imgName].src = this[9].src	}
	if (imgName == "kiwi")			{	document.images[imgName].src = this[10].src	}
	if (imgName == "carrot")		{	document.images[imgName].src = this[11].src	}
	if (imgName == "apple")			{	document.images[imgName].src = this[12].src	}
}

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



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()
}




