// 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_boxB")) return false;
	
	// Apply styles to the preview image
	var txtLinks = document.getElementById("columnA_boxB");
	txtLinks.style.position = "absolute";
	
	
	// Get all the links in the list
	var images = document.getElementById("gridContain");
	var imgLinks = images.getElementsByTagName("div");
	


}

addLoadEvent(prepareList);

/*		
	// Attach the animation behavior to the mouseover event
	// Kyung Lee
	imgLinks[3].onmouseover = function() {
		document.getElementById("subScroll_super").scrollTop =270;
	}
	// Sanje Woodsorrel
	imgLinks[7].onmouseover = function() {
	document.getElementById("subScroll_super").scrollTop =440;
	}
	// Brian Crotty
	imgLinks[8].onmouseover = function() {
		document.getElementById("subScroll_super").scrollTop =0;
	}
	// Kedar Lawrence
	imgLinks[10].onmouseover = function() {
	document.getElementById("subScroll_super").scrollTop =270;
	}
	// Logan Baird
	imgLinks[11].onmouseover = function() {
	document.getElementById("subScroll_super").scrollTop =0;
	}
	// Tony Sondag
	imgLinks[16].onmouseover = function() {
	document.getElementById("subScroll_super").scrollTop =440;
	}
*/