//Intense Renewal
function specialMakeArray()
    {
    this.length = specialMakeArray.arguments.length
    for (var i = 0; i < this.length; i++)
    this[i+1] = specialMakeArray.arguments[i]
    }


    var specialCare = new specialMakeArray("Select Product", 
										   "Gentle Facial Cleanser",
										   "Refining Toner",
										   "Facial Polishing Gel",
										   "Instant Beauty",
										   "Skin Renewal",
										   "Peel & Renew Skin Resurfacing Kit"
										   );

    var specialUrl = new specialMakeArray("",
								 "/products/actual-products/gentle-facial-cleanser.html",
                                "/products/actual-products/refining-toner.html",
                                "/products/actual-products/facial-polishing-gel.html",
                                "/products/actual-products/instant-beauty.html",
                                "/products/actual-products/skin-renewal.html",		
                                "/index.php?id=104"					
								);
							
 function specialPage(form) {
			i = form.specialMenu.selectedIndex;
			if (i == 0) return;
			window.location.href = specialUrl[i+1];
		}
		
	
