/*
New JavaScript links function - By Mark Slingo (07/02/2005)

To use this function, simply add the pairs into the array in the format "URL to link to","Text to make the hyperlink",

Note the " " around each section with the , (comma) between items. A comma should also appear at the end of each line to seperate
pairs. NB: A comma is *NOT* required on the end of the last item.

*/

function navmenu() {

var link_list = new Array(
"/index.htm","Home</a> | ",
"/about/index.htm","About Us</a> | ",
"/membership/index.htm","Membership</a> | ",
"/groups/index.htm","ANZIIL Groups</a> | ",
"/events_meetings/index.htm","Events & Meetings</a> | ",
"/resources/index.htm","Resources</a> | ",
"/resources/links/teachinglearning.htm","Useful Links</a> | ",
"/news/resources/info%20lit%20champion.pdf","Info Lit Champion</a>"
);

var return_value = '';

for (counter = 0; counter < link_list.length; counter = counter + 2) {
	return_value = return_value + '<a href="' + link_list[counter] + '" >' + link_list[counter + 1] + '';
}

return return_value;
}