$(function() {
	$.ajax({
		type: 'GET',
		url : '/scripts/buildWall.php',
		data: { num: '500'},
		context: $('.wall'),
		success: function (data) {
			$(this).html(data);
			$(this).hide();
			$(this).slideToggle('slow');
		}
	});
	$.ajax({
		type: 'GET',
		url : '/scripts/buildWall.php',
		data: { period: '7day'},
		context: $('#week-content'),
		success: function (data) {
			$(this).html(data);
			$(this).hide();
			$(this).slideToggle('slow');
		}
	});
		$.ajax({
		type: 'GET',
		url : '/scripts/buildWall.php',
		data: { period: 'overall'},
		context: $('#overall-content'),
		success: function (data) {
			$(this).html(data);
			$(this).hide();
			$(this).slideToggle('slow');
		}
	});
	$.ajax({
		type: 'GET',
		url : '/scripts/buildWall.php',
		data: { period: 'now'},
		context: $('#now-content'),
		success: function (data) {
			$(this).html(data);
			$(this).hide();
			$(this).slideToggle('slow');
		}
	});
});
