// GFX Battle Winner

var Bild		= new Array;
var Name2		= new Array;
var Votes    	= new Array;
var Work	  	= new Array;
var Threat	  	= new Array;

Bild[1]		= 'images/avatars/87.jpg';
Bild[2]		= 'images/avatars/noavatar.gif';
Bild[3]		= 'images/avatars/noavatar.gif';

Name2[1]	= 'pax';
Name2[2]	= 'jxSTARRR';
Name2[3]	= 'Lumpi';

Votes[1]	= '15';
Votes[2]	= '8';
Votes[3]	= '4';

Work[1]		= 'http://www.gfx-hoster.de/bild/25579/all6HVA6.jpg';
Work[2]		= '#';
Work[3]		= '#';

Threat[1]	= 'index.php?site=forum_topic&topic=221';
Threat[2]	= 'index.php?site=forum_topic&topic=221';
Threat[3]	= 'index.php?site=forum_topic&topic=221';

Avatar[1]	= 'index.php?site=profile&id=87';
Avatar[2]	= 'index.php?site=profile&id=91';
Avatar[3]	= 'index.php?site=profile&id=103';

function Img(img) {
	document.getElementById('bild').src = Bild[img];
	document.getElementById('name2').innerHTML = Name2[img];
	document.getElementById('votes').innerHTML = Votes[img];
	document.getElementById('work').href = Work[img];
	document.getElementById('threat').href = Threat[img];
	document.getElementById('avatar').href = Avatar[img];
	
	}
