//Script to output a random program teaser

	var ItemNum = Math.floor(Math.random() * 4 + 1);
	
	switch (ItemNum) {
		case 1:
			document.writeln(" <img src='/lib/img/home/home-main-image-1.jpg' alt='Paralegal Programs' width='483' height='141' usemap='#more'>");
			document.writeln("	<map name='more' id='more'>");
			document.writeln("		<area shape='rect' coords='232,104,319,128' href='/programs/paralegal-programs/' />");
			document.writeln("	</map>");
			break;	
		case 2:
			document.writeln(" <img src='/lib/img/home/home-main-image-2.jpg' alt='Criminal Justice' width='483' height='141' usemap='#more'>");
			document.writeln("	<map name='more' id='more'>");
			document.writeln("		<area shape='rect' coords='232,104,319,128' href='/programs/criminal-justice/' />");
			document.writeln("	</map>");
			break;		
		case 3:
			document.writeln(" <img src='/lib/img/home/home-main-image-4.jpg' alt='Legal Nurse Consultant' width='483' height='141' usemap='#more'>");
			document.writeln("	<map name='more' id='more'>");
			document.writeln("		<area shape='rect' coords='232,104,319,128' href='/programs/legal-nurse-consultant/' />");
			document.writeln("	</map>");
			break;	
		default:
			document.writeln(" <img src='/lib/img/home/home-main-image-1.jpg' alt='Paralegal Programs' width='483' height='141' usemap='#more'>");
			document.writeln("	<map name='more' id='more'>");
			document.writeln("		<area shape='rect' coords='232,104,319,128' href='/programs/paralegal-programs/' />");
			document.writeln("	</map>");
			break;	
	}
