function main()
{
	var e = document.getElementById("main");
	e.appendChild(tp);
	e.appendChild(tp2);

}
var tp = new Image();
tp.src = "tp.png";
tp.style.position = "absolute";
tp.style.top = "200px";
tp.style.left = "-57px";

var tp2 = new Image();
tp2.src = "tp.png";
tp2.style.position = "absolute";
tp2.style.bottom = "20px";
tp2.style.left = "-57px";

onload = main;