// Menu Actions
$.ajax({
	type: "GET",
	url: "/actions/menu_action",
	success: function(resp) {
	  $("#main_menu_secondary").html(resp);
	}
})

// Login Actions
$.ajax({
	type: "GET",
	url: "/actions/login_action",
	success: function(resp) {
	  $("#login_actions").html(resp);
	}
})
