//random image script

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



Picture[0]  = 'http://www.bigboobguide.com/images/mainGall/june-summers_fob.jpg';
PictureURL[0] = 'http://www.freaksofboobs.com/galleries/vb12/vb12_junesummers/index.html?nats=MTQ3NzA6OTQ6Mzk,0,0,0,';

Picture[1]  = 'http://www.bigboobguide.com/images/mainGall/summer-sinn_fob.jpg';
PictureURL[1] = 'http://www.freaksofboobs.com/galleries/vb12/vb12_summersinn2/index.html?nats=MTQ3NzA6OTQ6Mzk,0,0,0';

Picture[2]  = 'http://www.bigboobguide.com/images/mainGall/sara-stone_fob_03.jpg';
PictureURL[2] = 'http://www.freaksofboobs.com/galleries/pb04/pb04_sarastone/index.html?nats=MTQ3NzA6OTQ6Mzk,0,0,0,';

Picture[3]  = 'http://www.bigboobguide.com/images/mainGall/kelly-madison_km_01.jpg';
PictureURL[3] = 'http://gals.kellymadison.com/mgp/1285017043.html?nats=NTE5NC42LjEuMS4xLjYwMDEzNTcuMC4wLjA';

Picture[4]  = 'http://www.bigboobguide.com/images/mainGall/kelly-madison_km_02.jpg';
PictureURL[4] = 'http://gals.kellymadison.com/mgp/1285014369.html?nats=NTE5NC42LjEuMS4xLjYwMDEzMzIuMC4wLjA';

Picture[5]  = 'http://www.bigboobguide.com/images/mainGall/kelly-madison_km_03.jpg';
PictureURL[5] = 'http://gals.kellymadison.com/mgp/1282601674.html?nats=NTE5NC42LjEuMS4xLjYwMDEwMzkuMC4wLjA';

Picture[6]  = 'http://www.bigboobguide.com/images/mainGall/valory-irene_score.jpg';
PictureURL[6] = 'http://gallys.scorevideos.com/clips/ValoryIrene_26379/?nats=scrg6145.2.2.2.1.7008396.0.0.0';

Picture[7]  = 'http://www.bigboobguide.com/images/mainGall/alice-webb_score.jpg';
PictureURL[7] = 'http://gallys.scorehd.com/clips/Alice-Webb-HD_20864/?nats=scrg6145.2.2.2.1.7008396.0.0.0';

Picture[8]  = 'http://www.bigboobguide.com/images/mainGall/eden-mor_score.jpg';
PictureURL[8] = 'http://gallys.scoreland.com/clips/EdenMor_26507/?nats=scrg6145.2.2.2.1.7008396.0.0.0';
		
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]+'" target="_blank"><img src="'+Picture[changeImage]+'" border="0"></a>');
}
		
