<!-- 

G_total_ra = 0;					// total random elements
G_day = new Date();				// date for seed
G_seed = G_day.getTime();			// G_seed for random number

ae_('<img src="i/misc_photos/misc1.jpg" width="274" height="162" alt="" border="0"><br>');
ae_('<img src="i/misc_photos/misc2.jpg" width="274" height="162" alt="" border="0"><br>');
ae_('<img src="i/misc_photos/misc3.jpg" width="274" height="162" alt="" border="0"><br>');
function ae_ (description) {
	G_total_ra++;
	ra [G_total_ra] = description;
}
function rand() {
RN = parseInt(((G_seed - (parseInt(G_seed/1000,10) * 1000))/10)/100*G_total_ra + 1,10);
	return RN;
}
function ra () {}
//-->