// JavaScript Document

<!--

// the random number generator.
	var ranNum=Math.floor(Math.random()*13);
	
// this is where the array of success stories pictures are created.	
	var pic = new Array();
		
		pic[0] = "http://vlc.nccommunitycolleges.edu/images/of1.jpg";

		pic[1] = "http://vlc.nccommunitycolleges.edu/images/of2.jpg";

		pic[2] = "http://vlc.nccommunitycolleges.edu/images/of3.jpg";

		pic[3] = "http://vlc.nccommunitycolleges.edu/images/of4.jpg";

		pic[4] = "http://vlc.nccommunitycolleges.edu/images/of5.jpg";

		pic[5] = "http://vlc.nccommunitycolleges.edu/images/of6.jpg";

		pic[6] = "http://vlc.nccommunitycolleges.edu/images/of7.jpg";

		pic[7] = "http://vlc.nccommunitycolleges.edu/images/of8.jpg";

		pic[8] = "http://vlc.nccommunitycolleges.edu/images/of9.jpg";

		pic[9] = "http://vlc.nccommunitycolleges.edu/images/om1.jpg";

		pic[10] = "http://vlc.nccommunitycolleges.edu/images/om2.jpg";

		pic[11] = "http://vlc.nccommunitycolleges.edu/images/om3.jpg";

		pic[12] = "http://vlc.nccommunitycolleges.edu/images/om4.jpg";
		
	document.write('<img src="'+pic[ranNum]+'" width="194" border="0" alt="Photo of person"/>');






// -->
