// Copyright 2009 Poac.net

var RanImg = new Array()

RanImg[0] = '../../images/img_hp/hp_lab_f.jpg'
RanImg[1] = '../../images/img_hp/hp_lab_m.jpg'
RanImg[2] = '../../images/img_hp/hp_suit_f.jpg'
RanImg[3] = '../../images/img_hp/hp_suit_m.jpg'
RanImg[4] = '../../images/img_hp/hp_euro.jpg'

var p = RanImg.length;
var preBuffer = new Array()
for (i = 0; i < p; i++){
   preBuffer[i] = new Image()
   preBuffer[i].src = RanImg[i]
}
var Pic = Math.round(Math.random()*(p-1));

document.open();
document.write("<style type=text/css><!-- .hpbk   {background-image: url("+RanImg[Pic]+"); background-repeat: no-repeat; align: right;} --></style>");
