//random image script

var Picture = new Array();
var PictureURL = new Array();



Picture[0]  = 'http://www.bigboobguide.com/big_boob_images/topRow/bignats_pic_02.jpg';
PictureURL[0] = 'http://gallys.realitykings.com/bn/566/?id=bbgcombn';

Picture[1]  = 'http://www.bigboobguide.com/big_boob_images/topRow/extnats_pic_02.jpg';
PictureURL[1] = 'http://gallys.realitykings.com/en/88/?id=bbgcombn';

Picture[2]  = 'http://www.bigboobguide.com/big_boob_images/topRow/btra_mov_04.jpg';
PictureURL[2] = 'http://bigtitsroundasses.bangbros1.com/gal/244/p/bbgcom/';

Picture[3]  = 'http://www.bigboobguide.com/big_boob_images/topRow/bstyadv_mov_02.jpg';
PictureURL[3] = 'http://bustyadventures.bangbros1.com/gal/50248/p/bbgcom/';

Picture[4]  = 'http://www.bigboobguide.com/big_boob_images/topRow/scoreland_pic_02.jpg';
PictureURL[4] = 'http://gallys.scoreland.com/pics/324.LilyValentine.17600/?nats=scrg6145:rev:scoreland,0,0,0,2270';

Picture[5]  = 'http://www.bigboobguide.com/big_boob_images/topRow/bigtitboss_mov_02.jpg';
PictureURL[5] = 'http://gallys.realitykings.com/bt/3/?id=bbgcombn';

Picture[6]  = 'http://www.bigboobguide.com/big_boob_images/topRow/dannicom_pic_04_danni.jpg';
PictureURL[6] = 'http://freesites.danni.com/104013/photos/danni_ashe/';

Picture[7]  = 'http://www.bigboobguide.com/big_boob_images/topRow/primecups_mov_02.jpg';
PictureURL[7] = 'http://galleries.primecups.com/myra/01/m1/215448/21/9/n/index.html';

Picture[8]  = 'http://www.bigboobguide.com/big_boob_images/topRow/primecups_mov_06.jpg';
PictureURL[8] = 'http://galleries.primecups.com/shayla/02/m1/215448/21/9/n/index.html';


var j = 0
var p = Picture.length;
var preBuffer = new Array()
for (i = 0; i < p; i++){
   preBuffer[i] = new Image()
   preBuffer[i].src = Picture[i]
}

var changeImage = Math.round(Math.random()*(p-1));
function randomImage(){
document.write('<a href="'+PictureURL[changeImage]+'"><img src="'+Picture[changeImage]+'" border="0"></a>');
}
