// JavaScript Document
	openGallery = function(file, description){
		var img = document.getElementById("galleryimg");
		img.src = "images/gallery/" + file;
		img.style.border ="1px solid #663333";
		img.alt = description.split("<br />").join(" ");
	}