//random image script

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



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

Picture[1]  = 'http://www.bigboobguide.com/images/topRow/kelly-madison_km_05.jpg';
PictureURL[1] = 'http://gals.kellymadison.com/mgp/1285017008.html?nats=NTE5NC42LjEuMS4xLjYwMDEzNTguMC4wLjA';

Picture[2]  = 'http://www.bigboobguide.com/images/topRow/lillian-faye_score_05.jpg';
PictureURL[2] = 'http://gallys.scoreland.com/clips/LillianFaye_23174/?nats=scrg6145.2.2.2.1.7012878.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>');
}

