function showanswer(id)
{
	alert(document.getElementById("question"+id).style.display)
	
	if(document.getElementById("question"+id).style.display == "none")
	{
		var divid = "'question" + id+"'";
		//alert(divid)
		var showdiv = new Slide(divid).down;
		//document.getElementById("question"+id).style.display = "block";
	}
	else
	{
		Slide("question"+id).up;
		//document.getElementById("question"+id).style.display = "none";
	}
}