function loginButtonShow(){
	$('#loginForm').show();
}
function loginButtonHide(){
	$('#loginForm').hide();
}
function subjectConfirmButtonHide(){
	$('#subjectConfirmRemove').hide();
}
function subjectConfirmButtonShow(){
	$('#subjectConfirmRemove').show();
}
function addCategoryButtonHide(){
	$('#addCategory').hide();
}
function addCategoryButtonShow(){
	$('#addCategory').show();
}
function changeActiveCourseButtonHide(){
	$('#changeActiveCourse').hide();
}
function changeActiveCourseButtonShow(){
	$('#changeActiveCourse').show();
}
function editCourseDetailsButtonHide(){
	$('#editCourse').hide();
}
function editCourseDetailsButtonShow(){
	$('#editCourse').show();
}
function addCourseButtonHide(){
	$('#addCourse').hide();
}
function addCourseButtonShow(){
	$('#addCourse').show();
}
function addNewInstructorButtonHide(){
	$('#addNewInstructor').hide();
}
function addNewInstructorButtonShow(){
	$('#addNewInstructor').show();
}
function addStudentsButtonHide(){
	$('#addStudents').hide();
}
function addStudentsButtonShow(){
	$('#addStudents').show();
}