//random image script

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



Picture[0]  = 'http://www.bigboobguide.com/images/topRow/fucash_fob_02.jpg';
PictureURL[0] = 'http://www.freaksofboobs.com/galleries/pb05/pb05_samantha38G/index.html?nats=MTQ3NzA6OTQ6Mzk,0,0,0,';

Picture[1]  = 'http://www.bigboobguide.com/images/topRow/kelly-madison_km_02.jpg';
PictureURL[1] = 'http://gals.kellymadison.com/tgp/1282417250.html?nats=NTE5NC42LjEuMS4xLjYwMDEwMjkuMC4wLjA';

Picture[2]  = 'http://www.bigboobguide.com/images/topRow/valory-irene_score_02.jpg';
PictureURL[2] = 'http://gallys.scorevideos.com/clips/ValoryIrene_26379/?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>');
}

