function cartoon(offset) {
  $.ajax({
    type: "GET",
    url: "ajax-cartoon.php?offset="+offset,
    data: offset,
    success: function(response) {
			$('#cartoon_container').html(response);
    }
  });
}
