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(
'<img class="random_photo" src="galeria2/banner/2libet_2008_1.jpg" width="604px" height="196px">',
'<img class="random_photo" src="galeria2/banner/2libet_2008_2.jpg" width="604px" height="196px">',
'<img class="random_photo" src="galeria2/banner/2libet_2008_5.jpg" width="604px" height="196px">',
'<img class="random_photo" src="galeria2/banner/2libet_2008_6.jpg" width="604px" height="196px">',
'<img class="random_photo" src="galeria2/banner/2libet_2008_7.jpg" width="604px" height="196px">',
'<img class="random_photo" src="galeria2/banner/2libet_2008_8b.jpg" width="604px" height="196px">',
'<img class="random_photo" src="galeria2/banner/2libet_impressio_1.jpg" width="604px" height="196px">',
'<img class="random_photo" src="galeria2/banner/2libet_impressio_2.jpg" width="604px" height="196px">',
'<img class="random_photo" src="galeria2/banner/2semmelrock08.jpg" width="604px" height="196px">',
'<img class="random_photo" src="galeria2/banner/2semmelrock08_1.jpg" width="604px" height="196px">'
).random(1).join(''));

