var openInNewWin = true;

var banners = new Array();
banners[0] = new Banner("http://sexyculo.rivcash.com/it/profile.php?nick=pecorina666", "Pecorina666", "http://www.sexyculo.com/ads/rivcash/pecorina666.jpg");
banners[1] = new Banner("http://sexyculo.rivcash.com/it/profile.php?nick=lovely79", "Lovely79", "http://www.sexyculo.com/ads/rivcash/lovely79.jpg");
banners[2] = new Banner("http://sexyculo.rivcash.com/it/profile.php?nick=sammy73", "Sammy73", "http://www.sexyculo.com/ads/rivcash/sammy73.jpg");
banners[3] = new Banner("http://sexyculo.rivcash.com/it/profile.php?nick=hot_pussy", "hot_pussy", "http://www.sexyculo.com/ads/rivcash/hot_pussy.jpg");


function Banner(url, description, image) {
	this.url = url;
	this.description = description;
	this.image = image;
	return this;
}
var bNum = Math.round(Math.random() * (banners.length - 1));


document.write("<a href=\"" + banners[bNum].url + "\"");
if (openInNewWin) {
	document.write(" target=\"_blank\"");
}
document.write(">");
document.write("<img src=\"" + banners[bNum].image + "\" border=\"0\" alt=\"" + banners[bNum].description + "\">");
document.write("</a>");

