function preloader(){
$$("#thumbswrapper img").each(function(e){
	e.style.background ='#fff url("/images/spinner.gif") 0px 0px no-repeat';
	e.src = "blank.gif";
	e.style.width=16 +"px";
	e.style.height=16 +"px";
	e.align ="absmiddle";
	newImage 		= new Image();
	newImage.src 	= e.getAttribute('rel') ;
	
	if (newImage.complete) {
		e.src = newImage.src ;
		
		e.style.width=60+"px";
		e.style.height = 40+"px";
		
	} else {
		newImage.onload = function(){
			e.src = this.src;
			
			e.style.width=60+"px";
			e.style.height = 40+"px";
			
		}.bind(newImage);
	}

});
}
Event.observe(window, 'load', preloader,false);