$.extend(jQuery, new SelectCampus());
function SelectCampus() {
	this.changeCampus = function(campus_id){
		$.ajax({
	   	type: "GET",
   		url: "/change_campus?c=" + campus_id,
	   	dataType: "html",
   		success: this.processChangeCampus
	 	});
	}
	
	this.processChangeCampus = function(xml){
		xml = xml.replace('<?xml version="1.0"?>', '');

		if($(xml, 'status').text() == 'error')
		{
			$('#alerts').empty();
				var output = '<p>hmmmm... there seems to have been an error. Please contact the administrator if this problem persists.</p>';
			$('#alerts').append(output);
		}
		else
		{
			alert('RELOAD');
			window.location.reload; //Need to replace with actual location
		}
	}
}