/* The link details */ 
var links = new Array ("link1", "link2", "link3", "link4", "link5", "link6", "link7", "link8", "link9", "link10", "link11", "link12", "link13", "link14", "link15", "link16", "link17"); 

var links_text = new Array ("Al Ghazali legal Society", "Animal Law Association", "Asian American Law Students' Association", "Black Law Students' Association", "Christian Legal Society", "Environmental Law Society", "Federalist Society", "Health Law Association", "Hispanic Law Students' Association", "International Law Students' Association", "J. Reuben Clark Law Society", "Phi Alpha Delta", "Phi Delta Phi", "Public Interest Law Group", "Sports and Entertainment Law Association", "Student Legal Writers' Association", "Women Law Students' Association"); 

/* For organizations that do not have a website, please use the following for the URL:

	"javascript:void(0)\" style=\"cursor: default; COLOR: black; font-family:  Verdana, Geneva, Arial, Helvetica, sans-serif; font-size : 9pt;"

This Code voids the URL and corrects the color of the link to black (default) and sets the cursor to default as well.
*/

var links_url = new Array ("http://alghazalilegalsociety.webs.com\" target=\"_blank","http://law.slu.edu/organizations/animalLaw/index.html", "http://law.slu.edu/organizations/aalsa/index.html","http://law.slu.edu/organizations/blsa/index.html", "http://groups.yahoo.com/group/SLU_CLS/", "http://law.slu.edu/organizations/els/index.html", "http://www.slufedsoc.org\" target=\"_blank", "http://law.slu.edu/organizations/hla/index.html", "http://law.slu.edu/organizations/hlsa/index.html", "http://law.slu.edu/organizations/ils/index.html","http://law.slu.edu/organizations/jrcls/index.html", "http://law.slu.edu/organizations/pad/index.html", "http://law.slu.edu/organizations/pdp/index.html", "http://law.slu.edu/organizations/pilg/index.html", "http://law.slu.edu/organizations/sela/index.html","http://law.slu.edu/academic_support/writing/slwa/index.html", "http://law.slu.edu/organizations/wlsa/index.html");

/* Menu generating function */ 

function org_menu_gen() { 
	for(var i=0; i<links.length; i++) { 
		document.write('<a href="' + links_url[i] +  '" class="leftnav" style="padding-bottom:3px;">' + links_text[i] + '</a><br />'); 
 	} 
} 

/* Generate the menu */ 

org_menu_gen();