var picArray = new Array("pic1",
						 "pic2",
						 "pic3",
						 "pic4",
						 "pic5",
						 "pic6",
						 "pic7"
						 );
maxval = 6;

function getRandomNum(maxNum){
	rand = Math.round(Math.random() * (maxNum-1));
	return rand;	
}

function showRandomPic(){
	var msg = '';
	var num = getRandomNum(maxval);
	switch(num){
	case 0: msg = '<a href="profile.asp?emp=clark"><img src="i/clark.jpg" width="150" height="146" border="0" alt="By embracing diversity and consistently demonstrating our commitment, WellPoint has significantly expanded our service areas, creating greater opportunities for our associates, clients, business partners and stakeholders. - Clark"></a><br /><br /><a href="profile.asp?emp=clark">View Testimonials</a><br />';
	break;
	/*case 1: msg = '<a href="testimonials_trish.asp"><img src="i/trish.jpg" width="150" height="146" border="0"></a>';
	break;*/
	case 1: msg = '<a href="profile.asp?emp=ernest"><img src="i/ernest.jpg" width="150" height="146" border="0"  title="WellPoint\'s workplace environment not only welcomes, but encourages diversity. As a result, our workforce is truly reflective of the broad range of communities we serve.- Ernest" alt="WellPoint\'s workplace environment not only welcomes, but encourages diversity. As a result, our workforce is truly reflective of the broad range of communities we serve.- Ernest"></a><br /><br /><a href="profile.asp?emp=ernest">View Testimonials</a><br />';
	break;
	case 2: msg = '<a href="profile.asp?emp=brenda"><img src="i/brenda.jpg" width="150" height="146" border="0" title="WellPoint encourages its people to express their differences and diverse cultural uniqueness. And that creates an empowered workforce that respects and honors the company they work for. - Brenda" Alt="WellPoint encourages its people to express their differences and diverse cultural uniqueness. And that creates an empowered workforce that respects and honors the company they work for. - Brenda"></a><br /><br /><a href="profile.asp?emp=brenda">View Testimonials</a><br />';
	break;
	case 3: msg = '<a href="profile.asp?emp=anand"><img src="i/anand.jpg" width="150" height="146" border="0"  title="Diversity in our workforce promotes diversity in thoughts and ideas. As a result, we are a stronger, more dynamic organization - always striving to meet and exceed our customers\' needs. - Anand" alt="Diversity in our workforce promotes diversity in thoughts and ideas. As a result, we are a stronger, more dynamic organization - always striving to meet and exceed our customers\' needs. - Anand"></a><br /><br /><a href="profile.asp?emp=anand">View Testimonials</a><br />';
	break;
	case 4: msg = '<a href="profile.asp?emp=brian"><img src="i/brian.jpg" width="150" height="146" border="0" title="One of the main benefits of WellPoint\'s commitment to diversity is that the workplace becomes a melting pot. Many different people interact with one another, which can result in a broader array of ideas. - Brian" alt="One of the main benefits of WellPoint\'s commitment to diversity is that the workplace becomes a melting pot. Many different people interact with one another, which can result in a broader array of ideas. - Brian"></a><br /><br /><a href="profile.asp?emp=brian">View Testimonials</a><br />';
	break;
	case 5: msg = '<a href="profile.asp?emp=yomanece"><img src="i/Yomanece.jpg" width="150" height="146" border="0" title="WellPoint excels in Diversity so we can better serve the community. - Yomance" alt="WellPoint excels in Diversity so we can better serve the community. - Yomance"></a><br /><br /><a href="profile.asp?emp=yomanece">View Testimonials</a><br />';
	break;
	}
	document.write(msg);	
}
