// JavaScript Document


function prepareList() {
	// Make sure the browser understands the DOM methods
	if (!document.getElementsByTagName) return false;
	if (!document.getElementById) return false;
	// Make sure the elements exist
	if (!document.getElementById("gridContain")) return false;
	if (!document.getElementById("columnA_boxA")) return false;
	
	// Apply styles to the preview image
	var txtLinks = document.getElementById("columnA_boxA");
	txtLinks.style.position = "absolute";
	
	// Get all the links in the list
	var images = document.getElementById("gridContain");
	var imgLinks = images.getElementsByTagName("div");
}

addLoadEvent(prepareList);