function prepareElements() {
	//Check for DOM
	if (!document.getElementById) return false;
	if (!document.getElementsByTagName) return false;
	//Check for tags
	if (!document.getElementById("info_tag")) return false;
	if (!document.getElementsByTagName('dl')) return false;
	//Style the tags
	var infotag = document.getElementById("info_tag");
	infotag.style.display = "block";
	var detail = document.getElementsByTagName('dl');
	detail[0].style.marginLeft = "-254px";
	//Prepare the mousedowns
	infotag.onmousedown = function() {
		moveElement();
	}
	var closetag = document.getElementById("close_tag");
	closetag.onmousedown = function() {
		moveElementBack();
	}
}

addLoadEvent(prepareElements);
