$(function(){
	$.ajax({
		url: '/get_menu.php',
		type: 'GET',
		dataType: 'html',
		cache: false,
		beforeSend: function(){},
		success: function(data, status, xhr){
			$('#prese_menu').html(data);
		},
		error: function(xhr, status, errorThrown){}
	});

});
