$(document).ready(function() {
	$.ajax({
		type: 'POST',
		data: {
			method: 'flickr'
		},
		url: getRelativePath()+"ajax.php",
		success: function(response) {
			$("#flickr").html(response);
		}
	});
});
