function menu(url) {
	$.ajax({
		type: "POST",
		url : url,
		success : function(html) {
			$("#container").html(html);			
		}
	});
}


