// *** Description Arrays & Variables ***
var defaultDescription = "Hover your mouse over a treatment to see details here.";
var i = 0;

var facialDescriptions = new Array();
	facialDescriptions[0] = "<b>Clay Mask -</b> The face and neck are cleansed followed by a relaxing massage of the face, neck and shoulders. The clay mask is then applied, and to complete the treatment, the skin is toned and moisturised.";
	facialDescriptions[1] = "<b>Collagen Mask -</b> The face and neck are cleansed followed by a relaxing massage of the face, neck and shoulders. The collagen mask is then applied, and to complete the treatment, the skin is toned and moisturised.";

var handfootDescriptions = new Array();
	handfootDescriptions[0] = "<b>Manicure with Polish</b> - Nail/cuticle tidy. Hand & arm massage.";
	handfootDescriptions[1] = "<b>Shape &amp; Std. Polish</b> - Nail/cuticle tidy. Standard polish.";
	handfootDescriptions[2] = "<b>French Manicure</b> - Nail/cuticle tidy. French polish.";
	handfootDescriptions[3] = "<b>Shape &amp; French Manicure</b> - Nail shape &amp French polish.";
	handfootDescriptions[4] = "<b>Pedicure</b> - Nail/cuticle tidy, hard skin removal. Leg &amp foot massage.";

var massageDescriptions = new Array();
	massageDescriptions[0] = "Back, Neck & Shoulders";
	massageDescriptions[1] = "Back, Neck & Facial";
	massageDescriptions[2] = "Full Body Massage";
	massageDescriptions[3] = "Leg & Foot Massage";
	massageDescriptions[4] = "<b>Full Body Exfoliation -</b> Using a body scrub the body is exfoliated, then a moisturiser is massaged into the skin, leaving it silky smooth.";

var myImg = new Array();
	myImg[0] = "images/mumpic1.jpg";
	myImg[1] = "images/mumpic2.jpg";
	myImg[2] = "images/mumpic3.jpg";
	myImg[3] = "images/mumpic5.1.jpg";
	

// *** Functions ***
function mnuHover(overCell, col)
{
	overCell.style.backgroundColor=col
}

function MenuOver(menuItem)
{
	menuItem.style.backgroundImage='url(images/menuItemHover.png)';
}

function MenuOut(menuItem)
{
	menuItem.style.backgroundImage='url(images/menuItem.png)';
}
	
function popUp(URL) 
{
	day = new Date();
	id = day.getTime();
	eval("page" + id + " = window.open(URL, '" + id + "', 'toolbar=0,scrollbars=0,location=0,statusbar=0,menubar=0,resizable=0,width=480,height=361,left=200,top=150');");
}

function jumpMenu(targ,selObj,restore)
{
	eval(targ+".location='"+selObj.options[selObj.selectedIndex].value+"'");
	if (restore)
		selObj.selectedIndex=0;
}

function loadImg()
{
	i = 0;
	document.imgSrc.src = myImg[i];
}

function nextImg()
{
	if (i > 2)
	{
		i = 0;
	}
	else
	{
		i += 1;
	}
	document.imgSrc.src = myImg[i];
}

function prevImg()
{
	if (i < 1)
	{
		i = 3;
	}
	else
	{
		i-=1;
	}
	document.imgSrc.src = myImg[i];
}