// JavaScript Document

function movePhoto() {
	divsRoot = document.getElementById("fresh_pairs");
	divs = divsRoot.getElementsByTagName("div");
	imgs = new Array; i=0;
	for(j=0; j<divs.length; j++) 
		if(divs[j].className=="img") { imgs[i]=divs[j]; i++; }	     
	for(i=0; i<imgs.length; i++) {
		imgs[i].loop=i;
		imgs[i].onmouseover=function() { this.className+=" over"; showShadow(this,719,this.offsetParent.offsetTop,13,13); }
		imgs[i].onmouseout=function() { this.className=this.className.replace(" over", ""); hideShadow(); }
   }
	return true;
}