function hide_or_show(name)
{
	myDiv = document.getElementById(name)
	if (myDiv.style.display == '' || myDiv.style.display == 'none')
	{
		myDiv.style.display = 'block'
	}
	else
	{
		myDiv.style.display = 'none'
	}
}

function load_check()
{
}


// /////////////////// //
// dist_sun page stuff //
// /////////////////// //

total = 9
var name = new Array(total)
var img1 = new Array(total)
var img2 = new Array(total)

function preload_dist_sun()
{
	for (i = 0; i < total; i++)
	{
		name[i] = "faq" + (i+1)
		img2[i] = new Image()
		img2[i].src = "images/faq" + (i+1) + "txt.gif"
	}
}

function flip_dist_sun(num, orig)
{
	if (orig)
	{
		document.images[name[num]].src = img1[num]
	}
	else
	{
		img1[num] = document.images[name[num]].src
		document.images[name[num]].src = img2[num].src
	}
}

function faq(num)
{
	str = new Array(10)
	str[0] = "Answer will be shown here"
	str[1] = "Before a second application its best to wait at least one day, after which it can be re-applied for a darker effect."
	str[2] = "The tan will last 3 to 5 days depending on skin type and level of activity."
	str[3] = "DHA can be drying, but this formulation using high % of Aloe Barbadensis, actually leaves skin softer and more hydrated than anti-age plus."
	str[4] = "Clear and bronzing guarantee the same quality of color once fully developed. Bronzer gives immediate tan and is usually preferred. Clear is best during hot days, to avoid bronzer streaking."
	str[5] = "Yes. Its been tested and approved by the FDA and European Health Ministries. Its been actively used in cosmetics for more than 40 year. As with any product patch test sensitive skin."
	str[6] = "The color is good for any skin type.  Those whod like a darker effect can re-apply a day later."
	str[7] = "The tan fully develops in 12 hours, so while not harmful in any way, it is recommended to not apply more than once a day."
	str[8] = "Absolutely yes and the result is superb.  The spray treatment should be done after the Uv session."
	str[9] = "No more orange as the advanced formulation eliminates these problems. The perfectly even penetration avoids patches or stains."


	myDiv = document.getElementById('faq')
	if (myDiv)
	{
		myDiv.firstChild.data = str[num]
	}
}

function dn()
{
}

