<!--

	function randomImage(num) {
		
		var imageSet = num++;
		var randomNum = Math.floor(Math.random()*imageSet);
		
		document.write('<img src="/images/assnimg67/imgs/intro_'+randomNum+'.jpg" width="280" border="0" alt="" align="left">');
		
	}
	
	randomImage(7);

-->