function getRandom(mi,ma){return (Math.round(Math.random()*(ma-mi)))+mi;}

function drawRandom(){
	
	var imglist=new Array();
	var min=0;
	var max=0;
	
	imglist[0]="header_graphic_01.jpg";
	imglist[1]="header_graphic_02.jpg";
	imglist[2]="header_graphic_03.jpg";
	imglist[3]="header_graphic_04.jpg";
	imglist[4]="header_graphic_05.jpg";
	imglist[5]="header_graphic_06.jpg";
	
	max=imglist.length-1; //gets the maximum number
	
	//document.write('<table width="100%" border="0" cellpadding="0" cellspacing="0"><tr><td nowrap>');
	document.write('<img width=\"142\" height=\"88\" hspace=\"3\" vspace=\"3\" border=\"0\" align=\"right\" src="assets/images/_random/' + eval("imglist[getRandom(min,max)]") + '" alt="">');
	//document.write('</td></tr></table>');

}

function drawRandomHeaderBG(){
	
	var imglist=new Array();
	var min=0;
	var max=0;
	
	imglist[0]="header_banner_bg01.jpg";
	imglist[1]="header_banner_bg02.jpg";
	imglist[2]="header_banner_bg03.jpg";
	imglist[3]="header_banner_bg04.jpg";
	imglist[4]="header_banner_bg05.jpg";
	imglist[5]="header_banner_bg06.jpg";
	
	max=imglist.length-1; //gets the maximum number
	
	//document.write('<table width="100%" border="0" cellpadding="0" cellspacing="0"><tr><td nowrap>');
	//document.write('<img width=\"142\" height=\"88\" hspace=\"3\" vspace=\"3\" border=\"0\" align=\"right\" src="assets/images/_random/' + eval("imglist[getRandom(min,max)]") + '" alt="">');
	document.write('<td background="assets/images/_random/' + eval("imglist[getRandom(min,max)]") + '" style="background-repeat:no-repeat;" height="94">');
	//document.write('</td></tr></table>');

}