var p = new Pageing();

function Pageing() {
	
	this.Load = function(pg) {
		
		$.ajax({
			url: URL+'ajax/bottom_articles.php',
			type: 'POST',
			data: 'pg='+pg,
			beforeSend: function() {
				$('.content-bottom .articles').html('<div class="loading"></div>');
			},
			success: function(data) {
				$('.content-bottom .articles').html(data);
			}
		})
		
	}
	
}
