$(function(){
	//hide footer form
	$("#footerRow1").hide();
	$("#footer").height("20px");
	
	//set up the quick search selection box
	$.ajax({
		url:"/el/teachers.xml",
		dataType:"xml",
		success:function(xml){
			var teacherSelect = $("select[name='teacher']");
			var jxml = $(xml);
			var option = $("<option />");
			
			teacherSelect.children().remove();
			
			option
				.attr("value","")
				.text("Any")
				.appendTo(teacherSelect);
			
			jxml.find("teacher").each(function(i,e){
				var je = $(e);
				option = $("<option />");
				option
					.attr("value",je.attr("id"))
					.text(je.attr("name"))
					.appendTo(teacherSelect);
			});
			
			$("#menu a:contains(teachers' profile)").attr("href",jxml.find("teacher#at").attr("page"));
		}
	});
});
