function imageGallery(div){
	var myLinks = document.getElementById("featureCopy").getElementsByTagName("a");
	for(i in myLinks){
		myLinks[i].onclick = function(){
			var myURL = this.href;
			this.setAttribute("class","current");
			document.getElementById("placeholderj").src = myURL;
			return false;
		};
	}
}

window.onload=function(){
imageGallery();
}