$(document).ready(function(){
	setupAZPage();
});

/*
	initialises the a to z page
*/
function setupAZPage()	{
	$("#AZList dd").hide();
	
	$("#AZList dt").click(AZPageDTClickListener);
}

function AZPageDTClickListener()	{
	$(this).next("dd").slideToggle(150);
}
