// JavaScript Document
function showImage(elem) {
	if(!document.getElementById) {
		return false;
	} else {
		var nailPic = elem.getAttribute('href');
		var polishPic = elem.getAttribute('rel');
		var polishName = elem.firstChild.getAttribute('alt');
		document.getElementById('hand').firstChild.setAttribute('src',nailPic);
		document.getElementById('polish').firstChild.setAttribute('src',polishPic);
		var theBottle = document.getElementById('bottlename');
		theBottle.firstChild.nodeValue = polishName;
	}
}
