
	function addRecent(id_accom_room_type)
	{
		$.ajax({
			type: "POST",
			url: "/body_incs/recent_box.php",
			data:
			{
				action: 'add',
				id_accom_room_type: id_accom_room_type
			},
			success: function(html)
			{
				updateRecent();
			}
		});	
	}
	
	function updateRecent() {
		$.ajax({
			type: "POST",
			url: "/body_incs/recent_box.php",
			data:
			{
				action: 'update'
			},
			success: function(html)
			{
				$("#recent_container").html(html);
			}
		});	
	}
	
	$(function() {
		updateRecent();
	});

