//global variable for array of pic files

document.observe("dom:loaded", function() {
	addPics();
	this.observe("mouseover", highlight);
	this.observe("mouseout", unhighlight);
});

//stops the form once the button is clicked to make sure the names are valid
function addPics() {
	//add thumbnail pics to DOM with id's
	//create area for pics to get added to DOM if hovered onto
}

function highlight(event) {
	this.addClassName("highlight");
}

function unhighlight(event) {
	this.removeClassName("highlight");	
}

