/* This script and many more are available free online atThe JavaScript Source!! http://javascript.internet.comCreated by: Jeremy Keith / Anonymous | http://www.alistapart.com/articles/imagegallery/ */function showPic(whichpic) {  	if (document.getElementById) {		elImg = document.getElementById('img_big');		elImg.src = whichpic.href;		//att = document.createAttribute('jqimg');		//att.nodeValue = "http://www.vitrinevintage.com/test/upload/img_prod/zoom/" + whichpic.rel;		//document.getElementById('img_big').setAttributeNode(att);		elImg.setAttribute('jqimg', "http://www.vitrinevintage.com/upload/img_prod/zoom/" + whichpic.rel);		//elImg.jqimg = "http://www.vitrinevintage.com/test/upload/img_prod/zoom/" + whichpic.rel;		/*if (whichpic.title) {			document.getElementById('desc').childNodes[0].nodeValue = whichpic.title;		}		else {			document.getElementById('desc').childNodes[0].nodeValue = whichpic.childNodes[0].nodeValue;		}*/				return false;  	}	else {  		return true;  	}}