$(function(){$("#current_role").change(function(){$.ajax({url:"/switch/role/",type:"GET",cache:false,data:{"new":this.value},success:function(B,A){if(B=="success"){location.reload(true);return }ShowFlashMessage("Network error while switching roles","warning",true)},error:function(){ShowFlashMessage("Network error while switching roles","warning",true)}})});$("#current_student").change(function(){$.ajax({url:"/switch/student/",type:"GET",cache:false,data:{"new":this.value},success:function(B,A){if(B=="success"){location.reload(true);return }ShowFlashMessage("Network error while switching student","warning",true)},error:function(){ShowFlashMessage("Network error while switching student","warning",true)}})})});
