function ImageLoader(id,url){
	this.i = new Image();
	this.imEl=document.getElementById(id);

	this.loadImage = function(){
		objRef=this;
		this.imEl.style.background='url("http://skillfights.com/templates/images/ajax-loader.gif") no-repeat center';
		this.i.src=url;
		objRef.waitForImage();
	};

	this.waitForImage = function(){
		if(objRef.i.complete) objRef.imEl.style.background='url("'+this.i.src+'") no-repeat center';
		else setTimeout('objRef.waitForImage()',100);
	};
}

function randselect(id,thumb,title){
	document.getElementById('randomtitle').innerText = title;
	document.random.vote.value = id;
	loa=new ImageLoader('randomimg',thumb);
	loa.loadImage();
}
