
var tarleft = "47px";
var tartop = "600px";

window.addEvent('domready', function() {
	setcopyright();
	setTimeout("setcopyright()", 1000);	//fix position post scroll expand
});

window.addEvent('resize', function() {
	setcopyright();
});

function debug(){
	alert("what?");
}

function setcopyright(){
	if($(document.body).getElement("#container").getCoordinates().left >= 0){
		tarleft = $(document.body).getElement("#container").getCoordinates().left;
	}
	tarleft += "px";
	$(document.body).getElement("#copyright").setStyle("top", tartop);
	$(document.body).getElement("#copyright").setStyle("left", tarleft);
}