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('<span>');
document.write(new Array(
'<ul><li><a href="http://www.mp4.com.pl/index.php?str=wyk&amp;wykonawcy=130"><b style="text-decoration: underline;">Patrycja Markowska teledyski</b></a></li><li><a href="http://www.fx4.pl/index.php?str=lf&amp;no=17158"><b style="text-decoration: underline;">Skandal na Mundialu w RPA - Anglia - Niemcy</b></a></li><li><a href="http://www.poezja-spiewana.pl/index.php?str=lf&amp;no=2774"><b style="text-decoration: underline;">Piotr Bukartyk - Kobiety jak te kwiaty</b></a></li><li><a href="http://www.talenty.pl/index.php?str=linkif&amp;filmy=20483"><b style="text-decoration: underline;">Spot wyborczy Jarosława Kaczyńskiego</b></a></li><li><a href="http://www.muzaok.pl/index.php?str=lf&amp;no=242872"><b style="text-decoration: underline;">Shakira "Waka Waka"</b></a></li><li><a href="http://www.filmyok.pl/index.php?str=lf&amp;no=2188"><b style="text-decoration: underline;">Kick-Ass - pierwsza recenzja filmu</b></a></li><li><a href="http://www.portala.pl/index.php?str=artf&no=43"><b style="text-decoration: underline;">Tomasz Stańko</b></a></li><li><a href="http://www.fotkaok.pl/index.php?str=lf&no=78"><b style="text-decoration: underline;">Mistrzowie aktu - Jan Saudek</b></a></li><li><a href="http://www.noweprogramy.com/index.php?str=artf&no=669"><b style="text-decoration: underline;">Optymalizacja Windows 7</b></a></li><li><a href="http://www.techpedia.pl/index.php?str=lf&amp;no=207"><b style="text-decoration: underline;">Samsung Galaxy S</b></a></li></ul>',
'<ul><li><a href="http://www.mp4.com.pl/index.php?str=wyk&amp;wykonawcy=130"><b style="text-decoration: underline;">Patrycja Markowska teksty piosenek</b></a></li><li><a href="http://www.fx4.pl/index.php?str=lf&amp;no=17158"><b style="text-decoration: underline;">Skandal na Mundialu w RPA - Anglia - Niemcy</b></a></li><li><a href="http://www.poezja-spiewana.pl/index.php?str=lf&amp;no=2774"><b style="text-decoration: underline;">Piotr Bukartyk - Kobiety jak te kwiaty</b></a></li><li><a href="http://www.talenty.pl/index.php?str=linkif&amp;filmy=20483"><b style="text-decoration: underline;">Spot wyborczy Jarosława Kaczyńskiego</b></a></li><li><a href="http://www.muzaok.pl/index.php?str=lf&amp;no=242872"><b style="text-decoration: underline;">Shakira "Waka Waka"</b></a></li><li><a href="http://www.filmyok.pl/index.php?str=lf&amp;no=2188"><b style="text-decoration: underline;">Kick-Ass - pierwsza recenzja filmu</b></a></li><li><a href="http://www.portala.pl/index.php?str=lf&no=774"><b style="text-decoration: underline;">Michał Lorenc "Wyjazd z Polski" utwór żałobny w TVP</b></a></li><li><a href="http://www.fotkaok.pl/index.php?str=lf&no=78"><b style="text-decoration: underline;">Mistrzowie aktu - Jan Saudek</b></a></li><li><a href="http://www.noweprogramy.com/index.php?str=artf&no=669"><b style="text-decoration: underline;">Optymalizacja Windows 7</b></a></li><li><a href="http://www.techpedia.pl/index.php?str=lf&amp;no=207"><b style="text-decoration: underline;">Samsung Galaxy S</b></a></li></ul>'
).random().join(''));
document.write('</span>');






