/* *******************************      NOTE      ***********************************/ 
/*                       Changes to this file should also be in the 				*/
/*                 Faculty Site (K:/ and L:/)/Scripts/about_the_school.js		    */
/* **********************************************************************************/ 

/* The link details */ 
var links = new Array ("Link1", "Link2", "Link3", "Link4", "Link5", "Link6"); 

var links_date = new Array ("<strong>AUDIO AND VIDEO ARCHIVES</strong><br><br>Friday, Oct. 5, 2007", "Tuesday, Oct. 9, 2007", "Thursday, Oct. 25, 2007", "Friday, Mar. 7", "Friday, Apr. 4", "Friday, Apr. 4");

var links_title = new Array ("Childress Memorial Lecture Cooper v. Aaron: Little Rock and The Legacy of Brown", "Health Law Distinguished Speaker: Greg Luce", "Physician Ownership of Hospitals and Other Health Facilities: Antitrust and Policy Issues", "The Use and Misuse of History in U.S. Foreign Relations Law", "20th Annual Health Law Symposium: Disability, Reproduction and Parenting", "The Social, Political and Environmental Implications of Regional Trade Agreements");

var links_url = new Array ("http://law.slu.edu/multimedia/index.html#coopvaaron", "http://law.slu.edu/multimedia/index.html#luce", "http://law.slu.edu/multimedia/index.html#physician", "http://law.slu.edu/conf/history/index.html", "http://law.slu.edu/conf/parenting/index.html", "http://law.slu.edu/conf/trade/index.html"); 

var links_text = new Array ("GO", "GO", "GO", "READ MORE", "READ MORE", "READ MORE"); 

/* Menu generating function */ 
function past_events_gen() {
	
	document.write("<link href=\"http://law.slu.edu/nav.css\" rel=\"stylesheet\" type=\"text/css\" /><table width=\"207\" border=\"0\"><tr><td height=\"20\" align=\"right\" valign=\"top\"><img src=\"http://law.slu.edu/images/past_events_bar.jpg\" alt=\"past events\" width=\"207\" height=\"20\"></td></tr>");
	
	for(var i=0; i<links.length; i++) { 
		document.write('<tr><td valign=\"top\" class=\"navimageleft_font\"><br>');
  		document.write(links_date[i]);
		document.write('<br><strong>');
		document.write(links_title[i]);
		document.write('</strong><br><div style=\"margin: 1px 14px 0 0; text-align: right;\"><a href=\"' );
		document.write(links_url[i] );
		document.write('\" class=\"nav_a_h3\">&gt;&gt;');
		document.write(links_text[i]);
		document.write('</a></div></td></tr>');
	}
	
	document.write('</table>'); 
} 

/* Generate the menu */ 
past_events_gen();