//************************
//
//************************

function showIngredients()
{
	document.getElementById('proddescription').style.display = "none";
	document.getElementById('prodingredients').style.display = "block";
	document.getElementById('ongletIng').className = "current";
	document.getElementById('ongletDesc').className = "";
}

//*********************
//showDescription
//*********************

function showDescription()
{
	document.getElementById('proddescription').style.display = "block";
	document.getElementById('prodingredients').style.display = "none";
	document.getElementById('ongletIng').className = "";
	document.getElementById('ongletDesc').className = "current";
}

//****************
//unckeckids 
//****************

function uncheckKids()
{
	var q2 = document.getElementById('q2');
	var chkBox = q2.getElementsByTagName("INPUT");
	
	for (x in chkBox)
		chkBox[x].checked = false;
}

//**************
//checkKids
//**************

function checkKids(){
	document.getElementById('nokids').checked=false;
}


//**************
//showProdList
//**************

function showProdList(element)
{
	var lastchildObj = document.getElementById(element.id).lastElementChild;
	lastchildObj.style.display = 'block';
	

}

//**************
//hideProdList
//**************

function hideProdList(element)
{
	var lastchildObj = document.getElementById(element.id).lastElementChild;
	lastchildObj.style.display = 'none';

}




