Array.prototype.random = function(limit)
{
	if (typeof limit == 'undefined' || limit < 0) limit = 1;
	else if (!limit) limit = this.length;
	for (var i = 0, source = this, target = new Array(), n = source.length; i < limit && n > 0; i++)
	{
		do { var index = Math.random(); } while (index == 1);
		index = Math.floor(index * n);
		target.push(source[index]);
		source[index] = source[--n];
	}
	return target;
}

document.write(new Array(

'<a href="http://strategiacg.otwarte24.pl/244,Agricola"><img src="nowosci/agricola_PL.95902.140x0.jpg" alt="Agricola" title="Agricola" /></a>',
'<a href="http://strategiacg.otwarte24.pl/260,Hawana"><img src="nowosci/Hawana.169739.1180x0.jpg" alt="Hawana" title="Hawana" /></a>',
'<a href="http://strategiacg.otwarte24.pl/264,Zombiaki-2-Atak-na-Moskwe"><img src="nowosci/zombiaki2.png" alt="Zombiaki II" title="Zombiaki II" /></a>'
).random(1).join(''));