//Intense Renewal
function suncareMakeArray()
    {
    this.length = suncareMakeArray.arguments.length
    for (var i = 0; i < this.length; i++)
    this[i+1] = suncareMakeArray.arguments[i]
    }


    var sunCare = new suncareMakeArray("Select Product", 
										   "Facial Moisturising Lotion SPF 30+",
										   "Facial Moisturising Lotion SPF 30+ Nude",
										   "Facial Moisturising Lotion SPF 30+ Tan",
										   "Sunless Self Tanning Lotion" 
										   );

    var suncareUrl = new suncareMakeArray("",
								
								"http://www.drlewinns.com.au/index.php?id=44",
								"http://www.drlewinns.com.au/index.php?id=3069", 
								"http://www.drlewinns.com.au/index.php?id=3070", 
								"http://www.drlewinns.com.au/index.php?id=101" 
								);
							
 function suncarePage(form) {
			i = form.suncareMenu.selectedIndex;
			if (i == 0) return;
			window.location.href = suncareUrl[i+1];
		}
		
//******************Hands and Body**************************//
function handsBodyMakeArray()
    {
    this.length = handsBodyMakeArray.arguments.length
    for (var i = 0; i < this.length; i++)
    this[i+1] = handsBodyMakeArray.arguments[i]
    }


    var handsBody = new handsBodyMakeArray("Select Product", 
										   "ToneUp Body Moisturiser",
										   "Liquid Loofah",
										   "Hand &amp; Nail Cream",
										   "Revitalising Hand & Foot Polish",
										   "Hand & Nail Cream SPF 15"
										   /*,
										   "Revitanail",
										   "Revitagloss",
										   "Revitaoil"*/
										   );

    var handsBodyUrl = new handsBodyMakeArray("",
											  "/products/actual-products/toneup-body-moisturiser.html",
											  "/products/actual-products/liquid-loofah.html",
											  "/products/actual-products/hand-nail-cream.html",
											  "/products/actual-products/revitalising-hand-polish.html",
											  "http://www.drlewinns.com.au/index.php?id=3010"
											  /*,
											  "/products/actual-products/revitanail.html",
											  "/products/actual-products/revitagloss.html",
											  "/products/actual-products/revitaoil.html"*/
								);
							
 function handsBodyPage(form) {
			i = form.handsBodyMenu.selectedIndex;
			if (i == 0) return;
			window.location.href = handsBodyUrl[i+1];
		}
