// The Array Function 

function makeArray(len) {
    for (var i = 0; i < len; i++) this[i] = null;
this.length = len;
}


// This is the array of images A. The number of images needs to be set in parens: makeArray(X)

imagesA = new Array(
	'<img src=/img_atty/atty_HP_fig_0.jpg width=220 height=475 border=0 title=LegalMatch member Attorney alt=LegalMatch Member Attorney>',
	'<img src=/img_atty/atty_HP_fig_2.jpg width=220 height=475 border=0 title=LegalMatch member Attorney alt=LegalMatch Member Attorney>',
	'<img src=/img_atty/atty_HP_fig_3.jpg width=220 height=475 border=0 title=LegalMatch member Attorney alt=LegalMatch Member Attorney>'
);


// This is the array of images B. The number of images needs to be set in parens: makeArray(X)

imagesB = new Array(
	'<img src=/img_atty/atty_HP_header_1.gif width=305 height=140 border=0 title=Right Clients alt=Right Client>',
	'<img src=/img_atty/atty_HP_header_2.gif width=305 height=140 border=0 title=Better Way alt=Better Way>',
	'<img src=/img_atty/atty_HP_header_3.gif width=305 height=140 border=0 title=Easy Financing alt=Easy Financing>',
	'<img src=/img_atty/atty_HP_header_4.gif width=305 height=140 border=0 title=Perfect Balance>'
);

// The random number generator.


function rand(n) {
seed = (0x015a4e35 * seed) % 0x7fffffff;
return (seed >> 16) % n;
}
        
var now = new Date()
var seed = now.getTime() % 0xffffffff

