
function printWhyTechItems() {
    var whyTechItem = new Array();
    var i = 0;
    var output = '';
    indexesUsed = {};
    itemsToDisplay = 5;
    
    whyTechItem[whyTechItem.length] = ' High Bar passage percentage - 90% average over the last 16 years.';
    whyTechItem[whyTechItem.length] = ' High employment rate for graduates - 97% average over the past 5 years.';
    whyTechItem[whyTechItem.length] = ' A caring and nurturing environment fostered by our smaller size.';
    whyTechItem[whyTechItem.length] = ' One of the best and most technologically advanced facilities in the Nation.';
    whyTechItem[whyTechItem.length] = ' A diverse and talented student body working cooperatively toward mutual success.';
    whyTechItem[whyTechItem.length] = ' Championship Advocacy Teams and programs - 16 national and international championships in our relatively short 40 year history.';
    whyTechItem[whyTechItem.length] = ' Successful and loyal Alumni - Justices, CEOs, government leaders, premier trial advocates, generals, managing partners of major law firms, champions of public interest. Our alums excel in all fields.';
    whyTechItem[whyTechItem.length] = ' A &quot;student-centered&quot; approach to teaching and an open-door policy to promote mentorship.';
    whyTechItem[whyTechItem.length] = ' Faculty members who excel in teaching and in legal scholarship.';
    whyTechItem[whyTechItem.length] = ' Opportunities for specialized study through certificate and joint-degree programs.';
    whyTechItem[whyTechItem.length] = ' One of the few universities combining Law, Medical, and Graduate schools on the same campus.';
    whyTechItem[whyTechItem.length] = ' International Exchange programs in Australia, France and Spain and a unique summer program in Mexico.';

	while(i < itemsToDisplay) { 
		var currIndex = Math.floor(Math.random() * (whyTechItem.length));
		if(indexesUsed[currIndex] == true) continue;
		output += '<p class="whytechlaw"><img src="/images/0136_fat_arrow.png" width="12" height="12" alt="bullet" border="0" /> ' + whyTechItem[currIndex] + '</p>';
		indexesUsed[currIndex] = true;
		i++;
	}
	document.write(output);
}


