dojo.require("dojo.fx");

function showAnswer(id)
{
	if (dojo.byId(id).style.display == "none") dojo.fx.wipeIn({node: id, duration: 300}).play();
	else dojo.fx.wipeOut({node: id, duration: 300}).play();
}

document.getElementById("azj").innerHTML = "www.ajtozar-javitas.hu";
